Class ChangeDetails
-
- All Implemented Interfaces:
-
java.io.Externalizable
,java.io.Serializable
,java.lang.Comparable
,org.apache.avro.generic.GenericContainer
,org.apache.avro.generic.GenericRecord
,org.apache.avro.generic.IndexedRecord
,org.apache.avro.specific.SpecificRecord
public class ChangeDetails extends SpecificRecordBase implements SpecificRecord
Details of the most recent update to the entity.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
ChangeDetails.Builder
RecordBuilder for ChangeDetails instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public Instant
updateTimestamp
-
Constructor Summary
Constructors Constructor Description ChangeDetails()
Default constructor. ChangeDetails(Instant updateTimestamp)
All-args constructor.
-
Method Summary
Modifier and Type Method Description Instant
getUpdateTimestamp()
Gets the value of the 'updateTimestamp' field. void
setUpdateTimestamp(Instant value)
Sets the value of the 'updateTimestamp' field. static Schema
getClassSchema()
static BinaryMessageEncoder<ChangeDetails>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<ChangeDetails>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<ChangeDetails>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this ChangeDetails to a ByteBuffer. static ChangeDetails
fromByteBuffer(ByteBuffer b)
Deserializes a ChangeDetails from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
Conversion<out Object>
getConversion(int field)
void
put(int field$, Object value$)
static ChangeDetails.Builder
newBuilder()
Creates a new ChangeDetails RecordBuilder. static ChangeDetails.Builder
newBuilder(ChangeDetails.Builder other)
Creates a new ChangeDetails RecordBuilder by copying an existing Builder. static ChangeDetails.Builder
newBuilder(ChangeDetails other)
Creates a new ChangeDetails RecordBuilder by copying an existing ChangeDetails instance. void
writeExternal(ObjectOutput out)
void
readExternal(ObjectInput in)
-
Methods inherited from class org.apache.avro.specific.SpecificRecordBase
compareTo, customDecode, customEncode, equals, hashCode, toString
-
Methods inherited from class org.apache.avro.generic.GenericRecord
hasField
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
ChangeDetails
ChangeDetails()
Default constructor.
-
ChangeDetails
ChangeDetails(Instant updateTimestamp)
All-args constructor.- Parameters:
updateTimestamp
- Time ([Instant]) in milliseconds when this entity was last updated.
-
-
Method Detail
-
getUpdateTimestamp
Instant getUpdateTimestamp()
Gets the value of the 'updateTimestamp' field.
- Returns:
Time ([Instant]) in milliseconds when this entity was last updated.
-
setUpdateTimestamp
void setUpdateTimestamp(Instant value)
Sets the value of the 'updateTimestamp' field. Time ([Instant]) in milliseconds when this entity was last updated.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<ChangeDetails> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
- Returns:
the message encoder used by this class
-
getDecoder
static BinaryMessageDecoder<ChangeDetails> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
- Returns:
the message decoder used by this class
-
createDecoder
static BinaryMessageDecoder<ChangeDetails> createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore.
- Parameters:
resolver
- a SchemaStore used to find schemas by fingerprint- Returns:
a BinaryMessageDecoder instance for this class backed by the given SchemaStore
-
toByteBuffer
ByteBuffer toByteBuffer()
Serializes this ChangeDetails to a ByteBuffer.
- Returns:
a buffer holding the serialized data for this instance
-
fromByteBuffer
static ChangeDetails fromByteBuffer(ByteBuffer b)
Deserializes a ChangeDetails from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class- Returns:
a ChangeDetails instance decoded from the given buffer
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
getConversion
Conversion<out Object> getConversion(int field)
-
newBuilder
static ChangeDetails.Builder newBuilder()
Creates a new ChangeDetails RecordBuilder.
- Returns:
A new ChangeDetails RecordBuilder
-
newBuilder
static ChangeDetails.Builder newBuilder(ChangeDetails.Builder other)
Creates a new ChangeDetails RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.- Returns:
A new ChangeDetails RecordBuilder
-
newBuilder
static ChangeDetails.Builder newBuilder(ChangeDetails other)
Creates a new ChangeDetails RecordBuilder by copying an existing ChangeDetails instance.
- Parameters:
other
- The existing instance to copy.- Returns:
A new ChangeDetails RecordBuilder
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
-
-
-