Package org.jfree.xml.attributehandlers
Class LongAttributeHandler
- java.lang.Object
-
- org.jfree.xml.attributehandlers.LongAttributeHandler
-
- All Implemented Interfaces:
AttributeHandler
public class LongAttributeHandler extends java.lang.Object implements AttributeHandler
A class that handles the conversion ofLongattributes to and from an appropriateStringrepresentation.
-
-
Constructor Summary
Constructors Constructor Description LongAttributeHandler()Creates a new attribute handler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoAttributeValue(java.lang.Object o)Converts the attribute to a string.java.lang.ObjecttoPropertyValue(java.lang.String s)Converts a string to aLong.
-
-
-
Constructor Detail
-
LongAttributeHandler
public LongAttributeHandler()
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:
toAttributeValuein interfaceAttributeHandler- Parameters:
o- the attribute (Longexpected).- Returns:
- A string representing the
Longvalue.
-
toPropertyValue
public java.lang.Object toPropertyValue(java.lang.String s)
Converts a string to aLong.- Specified by:
toPropertyValuein interfaceAttributeHandler- Parameters:
s- the string.- Returns:
- a
Long.
-
-