Class Cosignature
- All Implemented Interfaces:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Cosignaturedeserialize(ByteBuffer buffer) Deserializes an instance of this object from a byte payload.Reads a named field.Gets the signature field.Gets the signerPublicKey field.longGets the version field.protected voidserializeInto(Writer buffer) Writes this object's fields into the supplied buffer.voidSets a named field.voidsetSignature(Signature value) Sets the signature field.voidsetSignerPublicKey(PublicKey value) Sets the signerPublicKey field.voidsetVersion(long value) Sets the version field.intsize()Calculates the size of the object.toJson()Converts this object to a JSON-serializable representation.toString()Returns a string representation of this object.Returns the type-hint map driving the rule-based descriptor pipeline.Methods inherited from class org.symbol.sdk.CatbufferType
asByteArray, asBytes, asInt, asList, asLong, serialize, sort, toJsonString
-
Field Details
-
TYPE_HINTS
-
-
Constructor Details
-
Cosignature
public Cosignature()Creates a new Cosignature.
-
-
Method Details
-
typeHints
- Cosignature.typeHints
Returns the type-hint map driving the rule-based descriptor pipeline.
- Overrides:
typeHintsin classCatbufferType- Returns:
Field-name → rule-key map.
-
setField
- Cosignature.setField
Sets a named field. Used by the rule-based descriptor pipeline.
- Overrides:
setFieldin classCatbufferType- Parameters:
name- Field name (descriptor key).value- Value to assign.
-
getField
- Cosignature.getField
Reads a named field. Used by the facade-level entity inspection helpers.
- Overrides:
getFieldin classCatbufferType- Parameters:
name- Field name.- Returns:
Field value.
-
getVersion
public long getVersion()- Cosignature.getVersion
Gets the version field.
- Returns:
The version field.
-
setVersion
public void setVersion(long value) - Cosignature.setVersion
Sets the version field.
- Parameters:
value- New version value.
-
getSignerPublicKey
- Cosignature.getSignerPublicKey
Gets the signerPublicKey field.
- Returns:
The signerPublicKey field.
-
setSignerPublicKey
- Cosignature.setSignerPublicKey
Sets the signerPublicKey field.
- Parameters:
value- New signerPublicKey value.
-
getSignature
- Cosignature.getSignature
Gets the signature field.
- Returns:
The signature field.
-
setSignature
- Cosignature.setSignature
Sets the signature field.
- Parameters:
value- New signature value.
-
size
public int size()- Cosignature.size
Calculates the size of the object.
- Returns:
Size of this object in bytes.
-
deserialize
- Cosignature.deserialize
Deserializes an instance of this object from a byte payload.
- Parameters:
buffer- Output writer.- Returns:
Deserialized object.
- Throws:
IndexOutOfBoundsException- if the buffer is truncated or a declared length overruns itIllegalArgumentException- if a field carries an invalid value (e.g. a reserved field or unknown discriminator)
-
serializeInto
- Cosignature.serializeInto
Writes this object's fields into the supplied buffer.
- Specified by:
serializeIntoin classCatbufferType- Parameters:
buffer- Output writer.
-
toString
- Cosignature.toString
Returns a string representation of this object.
-
toJson
- Cosignature.toJson
Converts this object to a JSON-serializable representation.
- Specified by:
toJsonin classCatbufferType- Returns:
JSON-serializable representation of this object.
-