Class CharacterTransform
- java.lang.Object
-
- org.simpleframework.xml.transform.CharacterTransform
-
- All Implemented Interfaces:
Transform<java.lang.Character>
class CharacterTransform extends java.lang.Object implements Transform<java.lang.Character>
TheCharacterTransform
object transforms character values to and from string representations, which will be inserted in the generated XML document as the value place holder. The value must be readable and writable in the same format. Fields and methods annotated with the XML attribute annotation will use this to persist and retrieve the value to and from the XML source.@Attribute private Character value;
As well as the XML attribute values using transforms, fields and methods annotated with the XML element annotation will use this. Aside from the obvious difference, the element annotation has an advantage over the attribute annotation in that it can maintain any references using theCycleStrategy
object.
-
-
Constructor Summary
Constructors Constructor Description CharacterTransform()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Character
read(java.lang.String value)
This method is used to convert the string value given to an appropriate representation.java.lang.String
write(java.lang.Character value)
This method is used to convert the provided value into an XML usable format.
-
-
-
Method Detail
-
read
public java.lang.Character read(java.lang.String value) throws java.lang.Exception
This method is used to convert the string value given to an appropriate representation. This is used when an object is being deserialized from the XML document and the value for the string representation is required.
-
write
public java.lang.String write(java.lang.Character value) throws java.lang.Exception
This method is used to convert the provided value into an XML usable format. This is used in the serialization process when there is a need to convert a field value in to a string so that that value can be written as a valid XML entity.
-
-