Record Class Bundle3<T1,T2,T3>
java.lang.Object
java.lang.Record
com.portingdeadmods.portingdeadlibs.utils.functional.Bundle3<T1,T2,T3>
- All Implemented Interfaces:
Bundle
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.get(int n) booleanhas(int n) final inthashCode()Returns a hash code value for this object.static <T1,T2, T3> Bundle3 <T1, T2, T3> final StringtoString()Returns a string representation of this record class.v1()Returns the value of thev1record component.v2()Returns the value of thev2record component.v3()Returns the value of thev3record component.
-
Constructor Details
-
Bundle3
public Bundle3() -
Bundle3
-
-
Method Details
-
populate
-
get
-
has
-
with
-
toString
-
hashCode
-
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). -
v1
Returns the value of thev1record component.- Returns:
- the value of the
v1record component
-
v2
Returns the value of thev2record component.- Returns:
- the value of the
v2record component
-
v3
Returns the value of thev3record component.- Returns:
- the value of the
v3record component
-