java.lang.Object
java.lang.Record
org.aya.core.serde.SerDef.SerBind
- All Implemented Interfaces:
Serializable
- Enclosing interface:
SerDef
public static record SerDef.SerBind(@NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName> loosers, @NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName> tighters)
extends Record
implements Serializable
Serialized version of
BindBlock- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSerBind(@NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName> loosers, @NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName> tighters) Creates an instance of aSerBindrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName>loosers()Returns the value of theloosersrecord component.@NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName>tighters()Returns the value of thetightersrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
EMPTY
-
-
Constructor Details
-
SerBind
public SerBind(@NotNull @NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName> loosers, @NotNull @NotNull kala.collection.immutable.ImmutableSeq<SerDef.QName> tighters) Creates an instance of aSerBindrecord class.- Parameters:
loosers- the value for theloosersrecord componenttighters- the value for thetightersrecord 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. All components in this record class are compared withObjects::equals(Object,Object). -
loosers
Returns the value of theloosersrecord component.- Returns:
- the value of the
loosersrecord component
-
tighters
Returns the value of thetightersrecord component.- Returns:
- the value of the
tightersrecord component
-