Package org.jfree.report.util.beans
Class GenericValueConverter
- java.lang.Object
-
- org.jfree.report.util.beans.GenericValueConverter
-
- All Implemented Interfaces:
ValueConverter
public class GenericValueConverter extends java.lang.Object implements ValueConverter
A class that handles the conversion ofInteger
attributes to and from theirString
representation.- Author:
- Thomas Morgner
-
-
Constructor Summary
Constructors Constructor Description GenericValueConverter(java.beans.PropertyDescriptor pd)
Creates a new value converter.
-
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 aInteger
.
-
-
-
Method Detail
-
toAttributeValue
public java.lang.String toAttributeValue(java.lang.Object o) throws BeanException
Converts the attribute to a string.- Specified by:
toAttributeValue
in interfaceValueConverter
- Parameters:
o
- the attribute (Integer
expected).- Returns:
- A string representing the
Integer
value. - Throws:
BeanException
- if there was an error during the conversion.
-
toPropertyValue
public java.lang.Object toPropertyValue(java.lang.String s)
Converts a string to aInteger
.- Specified by:
toPropertyValue
in interfaceValueConverter
- Parameters:
s
- the string.- Returns:
- a
Integer
.
-
-