Class FindSignedGroupParametersResponse
-
- 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 FindSignedGroupParametersResponse extends SpecificRecordBase implements SpecificRecord
Response format for FindSignedGroupParametersResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
FindSignedGroupParametersResponse.Builder
RecordBuilder for FindSignedGroupParametersResponse instances.
-
Field Summary
Fields Modifier and Type Field Description public final static Schema
SCHEMA$
public List<SignedGroupParameters>
results
-
Constructor Summary
Constructors Constructor Description FindSignedGroupParametersResponse()
Default constructor. FindSignedGroupParametersResponse(List<SignedGroupParameters> results)
All-args constructor.
-
Method Summary
Modifier and Type Method Description List<SignedGroupParameters>
getResults()
Gets the value of the 'results' field. void
setResults(List<SignedGroupParameters> value)
Sets the value of the 'results' field. static Schema
getClassSchema()
static BinaryMessageEncoder<FindSignedGroupParametersResponse>
getEncoder()
Return the BinaryMessageEncoder instance used by this class. static BinaryMessageDecoder<FindSignedGroupParametersResponse>
getDecoder()
Return the BinaryMessageDecoder instance used by this class. static BinaryMessageDecoder<FindSignedGroupParametersResponse>
createDecoder(SchemaStore resolver)
Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore. ByteBuffer
toByteBuffer()
Serializes this FindSignedGroupParametersResponse to a ByteBuffer. static FindSignedGroupParametersResponse
fromByteBuffer(ByteBuffer b)
Deserializes a FindSignedGroupParametersResponse from a ByteBuffer. SpecificData
getSpecificData()
Schema
getSchema()
Object
get(int field$)
void
put(int field$, Object value$)
static FindSignedGroupParametersResponse.Builder
newBuilder()
Creates a new FindSignedGroupParametersResponse RecordBuilder. static FindSignedGroupParametersResponse.Builder
newBuilder(FindSignedGroupParametersResponse.Builder other)
Creates a new FindSignedGroupParametersResponse RecordBuilder by copying an existing Builder. static FindSignedGroupParametersResponse.Builder
newBuilder(FindSignedGroupParametersResponse other)
Creates a new FindSignedGroupParametersResponse RecordBuilder by copying an existing FindSignedGroupParametersResponse 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
-
FindSignedGroupParametersResponse
FindSignedGroupParametersResponse()
Default constructor.
-
FindSignedGroupParametersResponse
FindSignedGroupParametersResponse(List<SignedGroupParameters> results)
All-args constructor.- Parameters:
results
- 0 or 1 SignedGroupParameters depending on the success of the query.
-
-
Method Detail
-
getResults
List<SignedGroupParameters> getResults()
Gets the value of the 'results' field.
- Returns:
0 or 1 SignedGroupParameters depending on the success of the query.
-
setResults
void setResults(List<SignedGroupParameters> value)
Sets the value of the 'results' field. 0 or 1 SignedGroupParameters depending on the success of the query.
- Parameters:
value
- the value to set.
-
getClassSchema
static Schema getClassSchema()
-
getEncoder
static BinaryMessageEncoder<FindSignedGroupParametersResponse> getEncoder()
Return the BinaryMessageEncoder instance used by this class.
- Returns:
the message encoder used by this class
-
getDecoder
static BinaryMessageDecoder<FindSignedGroupParametersResponse> getDecoder()
Return the BinaryMessageDecoder instance used by this class.
- Returns:
the message decoder used by this class
-
createDecoder
static BinaryMessageDecoder<FindSignedGroupParametersResponse> 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 FindSignedGroupParametersResponse to a ByteBuffer.
- Returns:
a buffer holding the serialized data for this instance
-
fromByteBuffer
static FindSignedGroupParametersResponse fromByteBuffer(ByteBuffer b)
Deserializes a FindSignedGroupParametersResponse from a ByteBuffer.
- Parameters:
b
- a byte buffer holding serialized data for an instance of this class- Returns:
a FindSignedGroupParametersResponse instance decoded from the given buffer
-
getSpecificData
SpecificData getSpecificData()
-
getSchema
Schema getSchema()
-
newBuilder
static FindSignedGroupParametersResponse.Builder newBuilder()
Creates a new FindSignedGroupParametersResponse RecordBuilder.
- Returns:
A new FindSignedGroupParametersResponse RecordBuilder
-
newBuilder
static FindSignedGroupParametersResponse.Builder newBuilder(FindSignedGroupParametersResponse.Builder other)
Creates a new FindSignedGroupParametersResponse RecordBuilder by copying an existing Builder.
- Parameters:
other
- The existing builder to copy.- Returns:
A new FindSignedGroupParametersResponse RecordBuilder
-
newBuilder
static FindSignedGroupParametersResponse.Builder newBuilder(FindSignedGroupParametersResponse other)
Creates a new FindSignedGroupParametersResponse RecordBuilder by copying an existing FindSignedGroupParametersResponse instance.
- Parameters:
other
- The existing instance to copy.- Returns:
A new FindSignedGroupParametersResponse RecordBuilder
-
writeExternal
void writeExternal(ObjectOutput out)
-
readExternal
void readExternal(ObjectInput in)
-
customEncode
void customEncode(Encoder out)
-
customDecode
void customDecode(ResolvingDecoder in)
-
-
-
-