As an example, I would like to serialize / deserialize a single Slick2d object animation class using Jackson. What is the easiest way to do this?
You can annotate the mixed interface if you want to control the generated json on third-party classes.
more details here: http://wiki.fasterxml.com/JacksonMixInAnnotations
Like any object - pass it to objectMapper.readValue(..) / objectMapper.writeValue(..)
objectMapper.readValue(..)
objectMapper.writeValue(..)