public final class DurationType extends DataType
java.time.Duration values.| Modifier and Type | Field and Description |
|---|---|
static int |
BYTES
A
Duration requires 8 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
Duration instance from a ByteBuffer. |
protected void |
createSerializer(MessageType.MessageField field,
String fieldName,
String indent,
Formatter output)
Adds the Java code used to serialize a
Duration
instance to a ByteBuffer. |
Object |
deserialize(ByteBuffer buffer)
Returns the de-serialized
Duration value by
converting the encode long Duration.ofNanos value
back to a Duration using
Duration.ofNanos(long). |
void |
serialize(Object o,
ByteBuffer buffer)
Serializes the
Duration.ofNanos value 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
Duration requires 8 bytes for encoding.public void serialize(Object o, ByteBuffer buffer) throws BufferOverflowException
Duration.ofNanos value to
buffer.serialize in class DataTypeo - a Duration instance.buffer - write to this buffer.BufferOverflowException - if buffer does not contain enough space to store
the long nanoseconds value.public Object deserialize(ByteBuffer buffer) throws BufferUnderflowException
Duration value by
converting the encode long Duration.ofNanos value
back to a Duration using
Duration.ofNanos(long).deserialize in class DataTypebuffer - contains the serialized Duration.Duration.BufferUnderflowException - if buffer does not contain the complete
long nanoseconds value.protected void createSerializer(MessageType.MessageField field, String fieldName, String indent, Formatter output)
Duration
instance to a ByteBuffer.createSerializer in class DataTypefield - message field.fieldName - the Duration 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)
Duration instance from a ByteBuffer.createDeserializer in class DataTypefield - message field.fieldName - the Duration 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.