public class StringFormatSwap extends StringSwap<Object>
@BeanProperty.format()
annotation.Constructor and Description |
---|
StringFormatSwap(String format)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
String |
swap(BeanSession session,
Object o)
If this transform is to be used to serialize non-serializable POJOs, it must implement this method.
|
Object |
unswap(BeanSession session,
String f,
ClassMeta<?> hint)
If this transform is to be used to reconstitute POJOs that aren't true Java beans, it must implement this method.
|
forMediaTypes, forMediaTypes, getNormalClass, getSwapClass, getSwapClassMeta, isNormalObject, isSwappedObject, match, swap, toString, unswap, withTemplate, withTemplate
public StringFormatSwap(String format)
format
- The string format string.public String swap(BeanSession session, Object o) throws Exception
PojoSwap
The object must be converted into one of the following serializable types:
String
Number
Boolean
Collection
containing anything on this list.
Map
containing anything on this list.
swap
in class StringSwap<Object>
session
- The bean session to use to get the class meta.
This is always going to be the same bean context that created this swap.o
- The object to be transformed.Exception
- If a problem occurred trying to convert the output.public Object unswap(BeanSession session, String f, ClassMeta<?> hint) throws Exception
PojoSwap
unswap
in class StringSwap<Object>
session
- The bean session to use to get the class meta.
This is always going to be the same bean context that created this swap.f
- The transformed object.hint
- If possible, the parser will try to tell you the object type being created.
For example, on a serialized date, this may tell you that the object being created must be of type
GregorianCalendar
.
Exception
- If this method is not implemented.Copyright © 2018 Apache. All rights reserved.