@ThreadSafe @Immutable public final class LocalDateAttributeConverter extends Object implements AttributeConverter<LocalDate>
LocalDate and AttributeValue.
This stores and reads values in DynamoDB as a String.
LocalDates are stored in the official LocalDate format "[-]YYYY-MM-DD", where:
Year.MIN_VALUE and Year.MAX_VALUE (prefixed with - if it is negative)LocalDate for more details on the serialization format.
This is unidirectional format-compatible with the LocalDateTimeAttributeConverter, allowing values
stored as LocalDate to be retrieved as LocalDateTimes.
This serialization is lexicographically orderable when the year is not negative.
Examples:
LocalDate.of(1988, 5, 21) is stored as as an AttributeValue with the String "1988-05-21"LocalDate.of(0, 1, 1) is stored as as an AttributeValue with the String "0000-01-01"
This can be created via create().
| Modifier and Type | Method and Description |
|---|---|
AttributeValueType |
attributeValueType()
The
AttributeValueType that a converter stores and reads values
from DynamoDB via the AttributeValue class. |
static LocalDateAttributeConverter |
create() |
AttributeValue |
transformFrom(LocalDate input)
Convert the provided Java object into an
AttributeValue. |
LocalDate |
transformTo(AttributeValue input)
Convert the provided
AttributeValue into a Java object. |
EnhancedType<LocalDate> |
type()
The type supported by this converter.
|
public static LocalDateAttributeConverter create()
public EnhancedType<LocalDate> type()
AttributeConvertertype in interface AttributeConverter<LocalDate>public AttributeValueType attributeValueType()
AttributeConverterAttributeValueType that a converter stores and reads values
from DynamoDB via the AttributeValue class.attributeValueType in interface AttributeConverter<LocalDate>public AttributeValue transformFrom(LocalDate input)
AttributeConverterAttributeValue. This will raise a RuntimeException if the
conversion fails, or the input is null.
Example:
InstantAsStringAttributeConverter converter = InstantAsStringAttributeConverter.create();
assertEquals(converter.transformFrom(Instant.EPOCH),
EnhancedAttributeValue.fromString("1970-01-01T00:00:00Z").toAttributeValue());
transformFrom in interface AttributeConverter<LocalDate>public LocalDate transformTo(AttributeValue input)
AttributeConverterAttributeValue into a Java object. This will raise a RuntimeException if the
conversion fails, or the input is null.
Example:
InstantAsStringAttributeConverter converter = InstantAsStringAttributeConverter.create();
assertEquals(converter.transformTo(EnhancedAttributeValue.fromString("1970-01-01T00:00:00Z").toAttributeValue()),
Instant.EPOCH);
transformTo in interface AttributeConverter<LocalDate>Copyright © 2022. All rights reserved.