Uses of Class
com.ca.commons.datamodel.DataModelValue.ConversionSettings

Packages that use DataModelValue.ConversionSettings
com.ca.commons.datamodel Data modelling library with metadata support. 
com.ca.jcs.converter.attr   
com.ca.jcs.converter.core   
com.ca.jcs.converter.meta   
 

Uses of DataModelValue.ConversionSettings in com.ca.commons.datamodel
 

Methods in com.ca.commons.datamodel with parameters of type DataModelValue.ConversionSettings
static Object DataModelValue.fromString(DataModelType type, String value, DataModelValue.ConversionSettings convSettings)
          Parses a string to find a data model value of a specified type.
static Object DataModelValue.fromString(int legacyType, String value, DataModelValue.ConversionSettings convSettings)
          Deprecated. Use version taking DataModelType instead of legacy int.
 String DataModelValue.getValueAsString(DataModelValue.ConversionSettings convSettings)
          Return string representation of contained value, or null for collections, where convSettings will default to DataModelValue.DEFAULT_CONVERSION_SETTINGS if null.
static String DataModelValue.toString(DataModelType type, Object obj, DataModelValue.ConversionSettings convSettings)
          Return string representation of obj based on chosen type allowing for simple conversions between numeric types as required, such as converting an Integer obj to DBL_TYPE and the reverse.
static String DataModelValue.toString(int legacyType, Object obj, DataModelValue.ConversionSettings convSettings)
          Deprecated. This method takes legacy int values for the type and throws a runtime exception for unparsable strings, which is bad. Use the DataModelValue.getValue(DataModelType, String) or DataModelValue.toString(DataModelType, Object, ConversionSettings) methods instead.
 

Uses of DataModelValue.ConversionSettings in com.ca.jcs.converter.attr
 

Methods in com.ca.jcs.converter.attr that return DataModelValue.ConversionSettings
 DataModelValue.ConversionSettings JavaObjectAttributeConverter.getConversionSettings()
           
 

Methods in com.ca.jcs.converter.attr with parameters of type DataModelValue.ConversionSettings
 void JavaObjectAttributeConverter.setConversionSettings(DataModelValue.ConversionSettings cs)
          Delegate down to underlying JavaObjectConverter.
 

Uses of DataModelValue.ConversionSettings in com.ca.jcs.converter.core
 

Methods in com.ca.jcs.converter.core that return DataModelValue.ConversionSettings
 DataModelValue.ConversionSettings JavaObjectConverter.getConversionSettings()
           
 

Methods in com.ca.jcs.converter.core with parameters of type DataModelValue.ConversionSettings
 void JavaObjectConverter.setConversionSettings(DataModelValue.ConversionSettings cs)
          Allows conversion settings to be configured.
 

Uses of DataModelValue.ConversionSettings in com.ca.jcs.converter.meta
 

Methods in com.ca.jcs.converter.meta that return DataModelValue.ConversionSettings
 DataModelValue.ConversionSettings JavaObjectPropertyConverter.Config.getConversionSettings()
           
 

Methods in com.ca.jcs.converter.meta with parameters of type DataModelValue.ConversionSettings
 void JavaObjectPropertyConverter.Config.setConversionSettings(DataModelValue.ConversionSettings conversionSettings)
           
 



Created 2011-07-14 13:27 EST