Class CpkChunkId
-
- 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 CpkChunkId extends SpecificRecordBase implements SpecificRecord
Identifies a CPK chunk uniquely having as key the CPK checksum and the chunk part
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
CpkChunkId.Builder
RecordBuilder for CpkChunkId instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public SecureHash
cpkChecksum
public int
cpkChunkPartNumber
-
Constructor Summary
Constructors Constructor Description CpkChunkId()
Default constructor. CpkChunkId(SecureHash cpkChecksum, Integer cpkChunkPartNumber)
All-args constructor.
-
Method Summary
Modifier and Type Method Description SecureHash
getCpkChecksum()
Gets the value of the 'cpkChecksum' field. void
setCpkChecksum(SecureHash value)
Sets the value of the 'cpkChecksum' field. int
getCpkChunkPartNumber()
Gets the value of the 'cpkChunkPartNumber' field. void
setCpkChunkPartNumber(int value)
Sets the value of the 'cpkChunkPartNumber' field. static Schema
getClassSchema()
static BinaryMessageEncoder<CpkChunkId>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<CpkChunkId>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<CpkChunkId>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this CpkChunkId to a ByteBuffer. static CpkChunkId
fromByteBuffer(ByteBuffer b)
Deserializes a CpkChunkId from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static CpkChunkId.Builder
newBuilder()
Creates a new CpkChunkId RecordBuilder. static CpkChunkId.Builder
newBuilder(CpkChunkId.Builder other)
Creates a new CpkChunkId RecordBuilder by copying an existing Builder. static CpkChunkId.Builder
newBuilder(CpkChunkId other)
Creates a new CpkChunkId RecordBuilder by copying an existing CpkChunkId 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
-
CpkChunkId
CpkChunkId()
Default constructor.
-
CpkChunkId
CpkChunkId(SecureHash cpkChecksum, Integer cpkChunkPartNumber)
All-args constructor.- Parameters:
cpkChecksum
- CPK's checksum to which this chunk belongs tocpkChunkPartNumber
- number of CPK chunk
-
-
Method Detail
-
getCpkChecksum
SecureHash getCpkChecksum()
Gets the value of the 'cpkChecksum' field.
- Returns:
CPK's checksum to which this chunk belongs to
-
setCpkChecksum
void setCpkChecksum(SecureHash value)
Sets the value of the 'cpkChecksum' field. CPK's checksum to which this chunk belongs to
- Parameters:
value
- the value to set.
-
getCpkChunkPartNumber
int getCpkChunkPartNumber()
Gets the value of the 'cpkChunkPartNumber' field.
- Returns:
number of CPK chunk
-
setCpkChunkPartNumber
void setCpkChunkPartNumber(int value)
Sets the value of the 'cpkChunkPartNumber' field. number of CPK chunk
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<CpkChunkId> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
- Returns:
the message encoder used by this class
-
getDecoder
static BinaryMessageDecoder<CpkChunkId> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
- Returns:
the message decoder used by this class
-
createDecoder
static BinaryMessageDecoder<CpkChunkId> 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 CpkChunkId to a ByteBuffer.
- Returns:
a buffer holding the serialized data for this instance
-
fromByteBuffer
static CpkChunkId fromByteBuffer(ByteBuffer b)
Deserializes a CpkChunkId from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class- Returns:
a CpkChunkId instance decoded from the given buffer
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
newBuilder
static CpkChunkId.Builder newBuilder()
Creates a new CpkChunkId RecordBuilder.
- Returns:
A new CpkChunkId RecordBuilder
-
newBuilder
static CpkChunkId.Builder newBuilder(CpkChunkId.Builder other)
Creates a new CpkChunkId RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.- Returns:
A new CpkChunkId RecordBuilder
-
newBuilder
static CpkChunkId.Builder newBuilder(CpkChunkId other)
Creates a new CpkChunkId RecordBuilder by copying an existing CpkChunkId instance.
- Parameters:
other
- The existing instance to copy.- Returns:
A new CpkChunkId RecordBuilder
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
customEncode
void customEncode(Encoder out)
-
customDecode
void customDecode(ResolvingDecoder in)
-
-
-
-