Package org.jfree.report.util.beans
Class BigIntegerValueConverter
- java.lang.Object
-
- org.jfree.report.util.beans.BigIntegerValueConverter
-
- All Implemented Interfaces:
ValueConverter
public class BigIntegerValueConverter extends java.lang.Object implements ValueConverter
A class that handles the conversion ofBigIntegerattributes to and from theirStringrepresentation.- Author:
- Thomas Morgner
-
-
Constructor Summary
Constructors Constructor Description BigIntegerValueConverter()Creates a new value converter.
-
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 aBigInteger.
-
-
-
Method Detail
-
toAttributeValue
public java.lang.String toAttributeValue(java.lang.Object o)
Converts the attribute to a string.- Specified by:
toAttributeValuein interfaceValueConverter- Parameters:
o- the attribute (BigIntegerexpected).- Returns:
- A string representing the
BigIntegervalue.
-
toPropertyValue
public java.lang.Object toPropertyValue(java.lang.String s)
Converts a string to aBigInteger.- Specified by:
toPropertyValuein interfaceValueConverter- Parameters:
s- the string.- Returns:
- a
BigInteger.
-
-