Package org.apache.cayenne.access.types
Class LocalDateValueType
java.lang.Object
org.apache.cayenne.access.types.LocalDateValueType
- All Implemented Interfaces:
ValueObjectType<LocalDate,Date>
public class LocalDateValueType extends Object implements ValueObjectType<LocalDate,Date>
- Since:
- 4.0
-
Constructor Summary
Constructors Constructor Description LocalDateValueType()
-
Method Summary
Modifier and Type Method Description Date
fromJavaObject(LocalDate object)
Class<Date>
getTargetType()
Class<LocalDate>
getValueType()
String
toCacheKey(LocalDate object)
Returned value should be same for objects that is logically equal.LocalDate
toJavaObject(Date value)
-
Constructor Details
-
LocalDateValueType
public LocalDateValueType()
-
-
Method Details
-
getTargetType
- Specified by:
getTargetType
in interfaceValueObjectType<LocalDate,Date>
- Returns:
- base type used to serialize V objects to.
-
getValueType
- Specified by:
getValueType
in interfaceValueObjectType<LocalDate,Date>
- Returns:
- type of Objects described by this ValueObjectType.
-
toJavaObject
- Specified by:
toJavaObject
in interfaceValueObjectType<LocalDate,Date>
- Parameters:
value
- of type T- Returns:
- java object
-
fromJavaObject
- Specified by:
fromJavaObject
in interfaceValueObjectType<LocalDate,Date>
- Parameters:
object
- java object- Returns:
- value of type T
-
toCacheKey
Description copied from interface:ValueObjectType
Returned value should be same for objects that is logically equal.- Specified by:
toCacheKey
in interfaceValueObjectType<LocalDate,Date>
- Returns:
- String representation usable for cache.
-