Package dev.restate.sdk.gen.model
Record Class PayloadType
java.lang.Object
java.lang.Record
dev.restate.sdk.gen.model.PayloadType
-
Constructor Summary
ConstructorDescriptionPayloadType
(boolean isEmpty, String name, String boxed, String serdeDecl) Creates an instance of aPayloadType
record class. -
Method Summary
Modifier and TypeMethodDescriptionboxed()
Returns the value of theboxed
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
isEmpty()
Returns the value of theisEmpty
record component.name()
Returns the value of thename
record component.Returns the value of theserdeDecl
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
PayloadType
Creates an instance of aPayloadType
record class.- Parameters:
isEmpty
- the value for theisEmpty
record componentname
- the value for thename
record componentboxed
- the value for theboxed
record componentserdeDecl
- the value for theserdeDecl
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
isEmpty
public boolean isEmpty()Returns the value of theisEmpty
record component.- Returns:
- the value of the
isEmpty
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
boxed
Returns the value of theboxed
record component.- Returns:
- the value of the
boxed
record component
-
serdeDecl
Returns the value of theserdeDecl
record component.- Returns:
- the value of the
serdeDecl
record component
-