Class DeleteEntitiesById
-
- 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 DeleteEntitiesById extends SpecificRecordBase implements SpecificRecord
Delete entities by their ids. See also request
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
DeleteEntitiesById.Builder
RecordBuilder for DeleteEntitiesById instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public String
entityClassName
public List<ByteBuffer>
ids
-
Constructor Summary
Constructors Constructor Description DeleteEntitiesById()
Default constructor. DeleteEntitiesById(String entityClassName, List<ByteBuffer> ids)
All-args constructor.
-
Method Summary
Modifier and Type Method Description String
getEntityClassName()
Gets the value of the 'entityClassName' field. void
setEntityClassName(String value)
Sets the value of the 'entityClassName' field. List<ByteBuffer>
getIds()
Gets the value of the 'ids' field. void
setIds(List<ByteBuffer> value)
Sets the value of the 'ids' field. static Schema
getClassSchema()
static BinaryMessageEncoder<DeleteEntitiesById>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<DeleteEntitiesById>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<DeleteEntitiesById>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this DeleteEntitiesById to a ByteBuffer. static DeleteEntitiesById
fromByteBuffer(ByteBuffer b)
Deserializes a DeleteEntitiesById from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static DeleteEntitiesById.Builder
newBuilder()
Creates a new DeleteEntitiesById RecordBuilder. static DeleteEntitiesById.Builder
newBuilder(DeleteEntitiesById.Builder other)
Creates a new DeleteEntitiesById RecordBuilder by copying an existing Builder. static DeleteEntitiesById.Builder
newBuilder(DeleteEntitiesById other)
Creates a new DeleteEntitiesById RecordBuilder by copying an existing DeleteEntitiesById 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
-
DeleteEntitiesById
DeleteEntitiesById()
Default constructor.
-
DeleteEntitiesById
DeleteEntitiesById(String entityClassName, List<ByteBuffer> ids)
All-args constructor.- Parameters:
entityClassName
- the fully qualified entity class nameids
- ids of the entities to delete
-
-
Method Detail
-
getEntityClassName
String getEntityClassName()
Gets the value of the 'entityClassName' field.
- Returns:
the fully qualified entity class name
-
setEntityClassName
void setEntityClassName(String value)
Sets the value of the 'entityClassName' field. the fully qualified entity class name
- Parameters:
value
- the value to set.
-
getIds
List<ByteBuffer> getIds()
Gets the value of the 'ids' field.
- Returns:
ids of the entities to delete
-
setIds
void setIds(List<ByteBuffer> value)
Sets the value of the 'ids' field. ids of the entities to delete
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<DeleteEntitiesById> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
- Returns:
the message encoder used by this class
-
getDecoder
static BinaryMessageDecoder<DeleteEntitiesById> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
- Returns:
the message decoder used by this class
-
createDecoder
static BinaryMessageDecoder<DeleteEntitiesById> 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 DeleteEntitiesById to a ByteBuffer.
- Returns:
a buffer holding the serialized data for this instance
-
fromByteBuffer
static DeleteEntitiesById fromByteBuffer(ByteBuffer b)
Deserializes a DeleteEntitiesById from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class- Returns:
a DeleteEntitiesById instance decoded from the given buffer
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
newBuilder
static DeleteEntitiesById.Builder newBuilder()
Creates a new DeleteEntitiesById RecordBuilder.
- Returns:
A new DeleteEntitiesById RecordBuilder
-
newBuilder
static DeleteEntitiesById.Builder newBuilder(DeleteEntitiesById.Builder other)
Creates a new DeleteEntitiesById RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.- Returns:
A new DeleteEntitiesById RecordBuilder
-
newBuilder
static DeleteEntitiesById.Builder newBuilder(DeleteEntitiesById other)
Creates a new DeleteEntitiesById RecordBuilder by copying an existing DeleteEntitiesById instance.
- Parameters:
other
- The existing instance to copy.- Returns:
A new DeleteEntitiesById RecordBuilder
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
customEncode
void customEncode(Encoder out)
-
customDecode
void customDecode(ResolvingDecoder in)
-
-
-
-