|
Class Summary |
| AttributeValueConverter |
Destructively convert all of an attributes values, either to suit
connector (toConnector) or back to JCS standard format (fromConnector). |
| BoolAttributeConverter |
Calls BoolConverter on each value of a supplied attribute. |
| CommaSeparatedMultiValueFlattener |
Flatten a list of values into SQL list syntax (comma separated with ''
signifying a single quote). |
| CSVMultiValueFlattener |
Flatten a list of values into CSV list syntax (double quoted and comma separated with ""
signifying a single double quote), for instance the values
1, "2, 3 are encoded as "1","""2", "3". |
| EncryptAttributeConverter |
|
| ForceCaseAttributeConverter |
Converter that forces string values to be in particular case
$Id: ForceCaseAttributeConverter.java 55483 2011-03-31 06:11:18Z khaam03 $ |
| GeneralizedTimeAttributeConverter |
Setup attribute value converter for GeneralizedTime conversions |
| JavaObjectAttributeConverter |
Convert values for attribute to the Java Object matching the value type
specified for their DataModelProperty. |
| MapAttributeConverter |
Convert between values via configured map, optionally ignoring case. |
| MultiValueFlattener |
Base class for flatteners which convert a list of values to a single
literal, and vice-versa. |
| MultiValueFlattenerFactory |
Factory class allowing access to all defined MultiValueFlatteners. |
| NumericBaseAttributeConverter |
Attribute value converter wrapper for a converter capable of converting numeric
attribute values from one base to another |
| ORedMultiValueFlattener |
A Flattening converter that performs logical OR operation on multi-valued attribute
values which are numeric/enum ordinals. |
| PadAttributeConverter |
Wraps an a PadConverter in an AttributeValueConverter, and provides a suitable
attribute value converter for lossless padding (ie. not overflowing maxLength) |
| RegexAttributeConverter |
Calls RegexConverter on each value of a supplied attribute. |
| SQLMultiValueFlattener |
Flatten a list of values into SQL list syntax (single-quoted and comma separated with ''
signifying a single quote), for instance the values
1, '2, 3 are encoded as '1','''2', '3'. |
| StringArrayAttributeConverter |
Convert a multi-valued attribute to a single String[] value. |
| StructuralAttributeConverter |
Handy base class for converters that modify the structural form of an attribute, rather then just the syntax of its values. |
| TrimAttributeConverter |
Calls TrimConverter on each value of a supplied attribute. |
| XMLMultiValueFlattener |
Flatten a list of values into an XML delimitted literal, and vice-versa, for instance the values
1, 2, 3 are encoded as <list><1><2><3></list>. |
| XMLSQLDateTimeAttributeConverter |
Calls XMLSQLDateTimeConverter on each value of a supplied attribute. |
| XMLSQLTimeAttributeConverter |
Calls XMLSQLTimeConverter on each value of a supplied attribute. |