Package org.jfree.xml.attributehandlers
Class CharacterAttributeHandler
- java.lang.Object
-
- org.jfree.xml.attributehandlers.CharacterAttributeHandler
-
- All Implemented Interfaces:
AttributeHandler
public class CharacterAttributeHandler extends java.lang.Object implements AttributeHandler
A class that handles the conversion ofCharacter
attributes to and from an appropriateString
representation.
-
-
Constructor Summary
Constructors Constructor Description CharacterAttributeHandler()
Creates a new attribute handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toAttributeValue(java.lang.Object o)
Converts the attribute to a string.java.lang.Object
toPropertyValue(java.lang.String s)
Converts a string to aCharacter
.
-
-
-
Constructor Detail
-
CharacterAttributeHandler
public CharacterAttributeHandler()
Creates a new attribute handler.
-
-
Method Detail
-
toAttributeValue
public java.lang.String toAttributeValue(java.lang.Object o)
Converts the attribute to a string.- Specified by:
toAttributeValue
in interfaceAttributeHandler
- Parameters:
o
- the attribute (Character
expected).- Returns:
- A string representing the
Character
value.
-
toPropertyValue
public java.lang.Object toPropertyValue(java.lang.String s)
Converts a string to aCharacter
.- Specified by:
toPropertyValue
in interfaceAttributeHandler
- Parameters:
s
- the string.- Returns:
- a
Character
.
-
-