@ThreadSafe @Immutable public final class LocalDateAttributeConverter extends Object implements AttributeConverter<LocalDate>
LocalDate
and AttributeValue
.
This stores and reads values in DynamoDB as a number, so that they can be sorted numerically as part of a sort key.
LocalDateTimes are stored in the format "[-]YYYYMMDD000000", where:
Year.MIN_VALUE
and Year.MAX_VALUE
(prefixed with - if it is negative)LocalDateTimeAttributeConverter
.
This is format-compatible with the LocalDateTimeAttributeConverter
, allowing values stored as LocalDate
to be
retrieved as LocalDateTime
s and vice-versa. The time associated with a value stored as a LocalDate
is the
beginning of the day (midnight).
Examples:
LocalDate.of(1988, 5, 21)
is stored as ItemAttributeValueMapper.fromNumber("19880521000000")
LocalDateTime.of(-1988, 5, 21)
is stored as ItemAttributeValueMapper.fromNumber("-19880521000000")
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()
AttributeConverter
type
in interface AttributeConverter<LocalDate>
public AttributeValueType attributeValueType()
AttributeConverter
AttributeValueType
that a converter stores and reads values
from DynamoDB via the AttributeValue
class.attributeValueType
in interface AttributeConverter<LocalDate>
public AttributeValue transformFrom(LocalDate input)
AttributeConverter
AttributeValue
. This will raise a RuntimeException
if the
conversion fails, or the input is null.
Example:
InstantAsStringAttributeConverter converter = InstantAsStringAttributeConverter.create();
assertEquals(converter.toAttributeValue(Instant.EPOCH),
ItemAttributeValue.fromString("1970-01-01T00:00:00Z"));
transformFrom
in interface AttributeConverter<LocalDate>
public LocalDate transformTo(AttributeValue input)
AttributeConverter
AttributeValue
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.fromAttributeValue(ItemAttributeValue.fromString("1970-01-01T00:00:00Z")),
Instant.EPOCH);
transformTo
in interface AttributeConverter<LocalDate>
Copyright © 2020. All rights reserved.