Class DemoStateRecord
-
- 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 DemoStateRecord extends SpecificRecordBase implements SpecificRecord
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
DemoStateRecord.Builder
RecordBuilder for DemoStateRecord instances.
-
Constructor Summary
Constructors Constructor Description DemoStateRecord()
Default constructor. DemoStateRecord(Integer value)
All-args constructor.
-
Method Summary
Modifier and Type Method Description int
getValue()
Gets the value of the 'value' field. void
setValue(int value)
Sets the value of the 'value' field. static Schema
getClassSchema()
static BinaryMessageEncoder<DemoStateRecord>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<DemoStateRecord>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<DemoStateRecord>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this DemoStateRecord to a ByteBuffer. static DemoStateRecord
fromByteBuffer(ByteBuffer b)
Deserializes a DemoStateRecord from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static DemoStateRecord.Builder
newBuilder()
Creates a new DemoStateRecord RecordBuilder. static DemoStateRecord.Builder
newBuilder(DemoStateRecord.Builder other)
Creates a new DemoStateRecord RecordBuilder by copying an existing Builder. static DemoStateRecord.Builder
newBuilder(DemoStateRecord other)
Creates a new DemoStateRecord RecordBuilder by copying an existing DemoStateRecord instance. void
writeExternal(ObjectOutput out)
void
readExternal(ObjectInput in)
void
customEncode(Encoder out)
void
customDecode(ResolvingDecoder in)
-
Methods inherited from class org.apache.avro.specific.SpecificRecordBase
compareTo, equals, getConversion, 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
-
DemoStateRecord
DemoStateRecord()
Default constructor.
-
DemoStateRecord
DemoStateRecord(Integer value)
All-args constructor.- Parameters:
value
- The new value for value
-
-
Method Detail
-
getValue
int getValue()
Gets the value of the 'value' field.
- Returns:
The value of the 'value' field.
-
setValue
void setValue(int value)
Sets the value of the 'value' field.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<DemoStateRecord> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
- Returns:
the message encoder used by this class
-
getDecoder
static BinaryMessageDecoder<DemoStateRecord> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
- Returns:
the message decoder used by this class
-
createDecoder
static BinaryMessageDecoder<DemoStateRecord> 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 DemoStateRecord to a ByteBuffer.
- Returns:
a buffer holding the serialized data for this instance
-
fromByteBuffer
static DemoStateRecord fromByteBuffer(ByteBuffer b)
Deserializes a DemoStateRecord from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class- Returns:
a DemoStateRecord instance decoded from the given buffer
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
newBuilder
static DemoStateRecord.Builder newBuilder()
Creates a new DemoStateRecord RecordBuilder.
- Returns:
A new DemoStateRecord RecordBuilder
-
newBuilder
static DemoStateRecord.Builder newBuilder(DemoStateRecord.Builder other)
Creates a new DemoStateRecord RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.- Returns:
A new DemoStateRecord RecordBuilder
-
newBuilder
static DemoStateRecord.Builder newBuilder(DemoStateRecord other)
Creates a new DemoStateRecord RecordBuilder by copying an existing DemoStateRecord instance.
- Parameters:
other
- The existing instance to copy.- Returns:
A new DemoStateRecord RecordBuilder
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
customEncode
void customEncode(Encoder out)
-
customDecode
void customDecode(ResolvingDecoder in)
-
-
-
-