| Class | Description |
|---|---|
| BaseDataType |
Base data type that defines the default persistance methods for the various data types.
|
| BaseDateType |
Base class for all of the
Date class types. |
| BaseDateType.DateStringFormatConfig | |
| BaseEnumType |
Base class for the enum classes to provide a utility method.
|
| BigDecimalNumericType |
Type that persists a
BigInteger object as a NUMERIC SQL database field. |
| BigDecimalStringType |
Type that persists a
BigInteger object. |
| BigIntegerType |
Type that persists a
BigInteger object. |
| BooleanCharType |
Booleans can be stored in the database as the character '1' '0'.
|
| BooleanIntegerType |
Booleans can be stored in the database as the integer column type and the value 1 (really non-0) for true and 0 for
false.
|
| BooleanObjectType |
Type that persists a Boolean object.
|
| BooleanType |
Type that persists a boolean primitive.
|
| ByteArrayType |
Type that persists a byte[] object.
|
| ByteObjectType |
Type that persists a Byte object.
|
| ByteType |
Type that persists a byte primitive.
|
| CharacterObjectType |
Type that persists a Character object.
|
| CharType |
Type that persists a char primitive.
|
| DateIntegerType |
Persists the
Date Java class as integer seconds (not milliseconds) since epoch. |
| DateLongType |
Persists the
Date Java class as long milliseconds since epoch. |
| DateStringType |
Type that persists a
Date object as a String. |
| DateTimeType |
A custom persister that is able to store the org.joda.time.DateTime class in the database as epoch-millis long
integer.
|
| DateType |
Type that persists a
Date object. |
| DoubleObjectType |
Type that persists a Double object.
|
| DoubleType |
Type that persists a double primitive.
|
| EnumIntegerType |
Persists an Enum Java class as its ordinal integer value.
|
| EnumStringType |
Type that persists an enum as its string value produced by call @{link
Enum.name(). |
| EnumToStringType |
Type that persists an enum as its string value produced by call @{link
Enum.toString(). |
| FloatObjectType |
Type that persists a boolean primitive.
|
| FloatType |
Type that persists a float primitive.
|
| IntegerObjectType |
Type that persists a Integer object.
|
| IntType |
Type that persists a integer primitive.
|
| LongObjectType |
Type that persists a Long object.
|
| LongStringType |
Persists the
String Java class but with more storage in the database. |
| LongType |
Type that persists a long primitive.
|
| NativeUuidType |
Type that persists a
UUID object but as a UUID type which is supported by a couple of database-types. |
| SerializableType |
Persists an unknown Java Object that is
Serializable. |
| ShortObjectType |
Type that persists a Short object.
|
| ShortType |
Type that persists a short primitive.
|
| SqlDateStringType |
Type that persists a
Date object. |
| SqlDateType |
Type that persists a
Date object. |
| StringBytesType |
Type that persists a String as a byte array.
|
| StringType |
Type that persists a String object.
|
| TimeStampStringType |
Type that persists a
Timestamp object as a String. |
| TimeStampType |
Type that persists a
Timestamp object. |
| UuidType |
Type that persists a
UUID object using a database String. |
| VoidType |
Marker class used to see if we have a customer persister defined.
|
This documentation is licensed by Gray Watson under the Creative Commons Attribution-Share Alike 3.0 License.