| java.lang.Object com.ivata.mask.field.FieldValueConvertor com.ivata.mask.field.date.TimestampFieldValueConvertor
TimestampFieldValueConvertor | public class TimestampFieldValueConvertor extends FieldValueConvertor (Code) | |
Convert an object representing a timestamp to a string. This uses a string
representation of the time in milliseconds to convert - it's useful for
hidden fields (not for human-readable formats; use the
DateFieldValueConvertor for those).
since: ivata masks 1.0 (2005-09-15) author: Colin MacLeod author: colin.macleod@ivata.com version: $Revision: 1.3 $ |
Method Summary | |
public Object | convertFromString(Class propertyClass, String stringValue)
Convert a date value from a string.
Parameters: propertyClass - exact class to be converted to. Parameters: stringValue - value to be converted. | protected String | toString(Object objectValue)
Convert an object representing a timestamp to a string.
Parameters: objectValue - object to be converted. |
toString | protected String toString(Object objectValue)(Code) | |
Convert an object representing a timestamp to a string.
Parameters: objectValue - object to be converted. string equivalent of the object provided. |
|
|