Class FindEntities.Builder
-
- All Implemented Interfaces:
-
org.apache.avro.data.RecordBuilder
public class FindEntities.Builder extends SpecificRecordBuilderBase<T> implements RecordBuilder<T>
RecordBuilder for FindEntities instances.
-
-
Field Summary
Fields Modifier and Type Field Description public String
entityClassName
public List<ByteBuffer>
ids
-
Method Summary
Modifier and Type Method Description String
getEntityClassName()
Gets the value of the 'entityClassName' field. FindEntities.Builder
setEntityClassName(String value)
Sets the value of the 'entityClassName' field. List<ByteBuffer>
getIds()
Gets the value of the 'ids' field. FindEntities.Builder
setIds(List<ByteBuffer> value)
Sets the value of the 'ids' field. boolean
hasEntityClassName()
Checks whether the 'entityClassName' field has been set. FindEntities.Builder
clearEntityClassName()
Clears the value of the 'entityClassName' field. boolean
hasIds()
Checks whether the 'ids' field has been set. FindEntities.Builder
clearIds()
Clears the value of the 'ids' field. FindEntities
build()
-
-
Method Detail
-
getEntityClassName
String getEntityClassName()
Gets the value of the 'entityClassName' field. The fully qualified entity class name
-
setEntityClassName
FindEntities.Builder setEntityClassName(String value)
Sets the value of the 'entityClassName' field. The fully qualified entity class name
- Parameters:
value
- The value of 'entityClassName'.
-
getIds
List<ByteBuffer> getIds()
Gets the value of the 'ids' field. The serialized ids of the entities to find, each in AMQP format
-
setIds
FindEntities.Builder setIds(List<ByteBuffer> value)
Sets the value of the 'ids' field. The serialized ids of the entities to find, each in AMQP format
- Parameters:
value
- The value of 'ids'.
-
hasEntityClassName
boolean hasEntityClassName()
Checks whether the 'entityClassName' field has been set. The fully qualified entity class name
-
clearEntityClassName
FindEntities.Builder clearEntityClassName()
Clears the value of the 'entityClassName' field. The fully qualified entity class name
-
hasIds
boolean hasIds()
Checks whether the 'ids' field has been set. The serialized ids of the entities to find, each in AMQP format
-
clearIds
FindEntities.Builder clearIds()
Clears the value of the 'ids' field. The serialized ids of the entities to find, each in AMQP format
-
build
FindEntities build()
-
-
-
-