org.pentaho.reporting.engine.classic.core.util.beans
Class LongValueConverter

java.lang.Object
  extended by org.pentaho.reporting.engine.classic.core.util.beans.LongValueConverter
All Implemented Interfaces:
ValueConverter

public class LongValueConverter
extends Object
implements ValueConverter

A class that handles the conversion of Integer attributes to and from their String representation.

Author:
Thomas Morgner

Constructor Summary
LongValueConverter()
          Creates a new value converter.
 
Method Summary
 String toAttributeValue(Object o)
          Converts the attribute to a string.
 Object toPropertyValue(String s)
          Converts a string to a Integer.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LongValueConverter

public LongValueConverter()
Creates a new value converter.

Method Detail

toAttributeValue

public String toAttributeValue(Object o)
                        throws BeanException
Converts the attribute to a string.

Specified by:
toAttributeValue in interface ValueConverter
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 Object toPropertyValue(String s)
                       throws BeanException
Converts a string to a Integer.

Specified by:
toPropertyValue in interface ValueConverter
Parameters:
s - the string.
Returns:
a Integer.
Throws:
BeanException - if there was an error during the conversion.