public final class LocalDateTimeType extends DataType
java.time.LocalDateTime values.| Modifier and Type | Field and Description |
|---|---|
static int |
BYTES
A
LocalDateTime requires 16 bytes for
encoding. |
ADDRESS_TYPE, ARRAY_SUFFIX, CHARSET, CLASS_TYPE, EMPTY_STRING, FIELD_MASK_SIZE, INDENT, INDENT1, KEY_TYPE, MAX_ARRAY_SIZE, MAX_FIELDS, MAX_FILE_NAME_LENGTH, MAX_STRING_LENGTH, mBuiltinFlag, mClass, mDefaultValue, mSize, sClasses, sCompiledClasses, STRING_TYPE, VARIABLE_SIZE| Modifier and Type | Method and Description |
|---|---|
protected void |
createDeserializer(MessageType.MessageField field,
String fieldName,
String indent,
Formatter output,
boolean useBuilder)
Adds the Java code used to de-serialize a
LocalDateTime instance from a ByteBuffer. |
protected void |
createSerializer(MessageType.MessageField field,
String fieldName,
String indent,
Formatter output)
Adds the Java code used to serialize a
LocalDateTime instance to a ByteBuffer. |
Object |
deserialize(ByteBuffer buffer)
Returns the de-serialized
LocalDateTime value by
converting the encode long LocalDateTime.ofNanoOfDay
value back to a LocalDateTime using
LocalDateTime.of(LocalDate, LocalTime). |
void |
serialize(Object o,
ByteBuffer buffer)
Serializes the
LocalDateTime.toLocalDate and
LocalDateTime.toLocalTime values to
buffer. |
compareTo, dataClass, dataClassName, defaultValue, equals, fields, findCharset, findType, hashCode, isArray, isBuiltin, isEnum, isInstance, isLocalOnly, isMessage, isPrimitive, replyClasses, size, toStringpublic static final int BYTES
LocalDateTime requires 16 bytes for
encoding.public void serialize(Object o, ByteBuffer buffer) throws BufferOverflowException
LocalDateTime.toLocalDate and
LocalDateTime.toLocalTime values to
buffer.serialize in class DataTypeo - a LocalDateTime instance.buffer - write to this buffer.BufferOverflowException - if buffer does not contain enough space to store
the date and time values.public Object deserialize(ByteBuffer buffer) throws BufferUnderflowException
LocalDateTime value by
converting the encode long LocalDateTime.ofNanoOfDay
value back to a LocalDateTime using
LocalDateTime.of(LocalDate, LocalTime).deserialize in class DataTypebuffer - contains the serialized LocalDateTime.LocalDateTime.BufferUnderflowException - if buffer does not contain the complete
LocalDateTime value.protected void createSerializer(MessageType.MessageField field, String fieldName, String indent, Formatter output)
LocalDateTime instance to a ByteBuffer.createSerializer in class DataTypefield - message field.fieldName - the LocalDateTime message field
name.indent - indent code by this many spaces.output - output code to here.protected void createDeserializer(MessageType.MessageField field, String fieldName, String indent, Formatter output, boolean useBuilder)
LocalDateTime instance from a ByteBuffer.createDeserializer in class DataTypefield - message field.fieldName - the LocalDateTime message field name.indent - indent code by this many spaces.output - output code to here.useBuilder - if true then fieldName
is a builder method name; otherwise a local variable.Copyright © 2019. All rights reserved.