Module dev.nipafx.args
Package dev.nipafx.args
Record Class Parsed3<ARGS_TYPE_1,ARGS_TYPE_2,ARGS_TYPE_3>
java.lang.Object
java.lang.Record
dev.nipafx.args.Parsed3<ARGS_TYPE_1,ARGS_TYPE_2,ARGS_TYPE_3>
- Type Parameters:
ARGS_TYPE_1- first args type passed toArgs::parseARGS_TYPE_2- second args type passed toArgs::parseARGS_TYPE_3- third args type passed toArgs::parse- Record Components:
first- instance of the first args type passed toArgs::parsesecond- instance of the second args type passed toArgs::parsethird- instance of the third args type passed toArgs::parse
public record Parsed3<ARGS_TYPE_1,ARGS_TYPE_2,ARGS_TYPE_3> (ARGS_TYPE_1 first, ARGS_TYPE_2 second, ARGS_TYPE_3 third)
extends Record
Result of parsing arguments to three args records with
Args.parse(String[], Class, Class, Class).-
Constructor Summary
ConstructorsConstructorDescriptionParsed3(ARGS_TYPE_1 first, ARGS_TYPE_2 second, ARGS_TYPE_3 third) Creates an instance of aParsed3record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.first()Returns the value of thefirstrecord component.final inthashCode()Returns a hash code value for this object.second()Returns the value of thesecondrecord component.third()Returns the value of thethirdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
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). -
first
Returns the value of thefirstrecord component.- Returns:
- the value of the
firstrecord component
-
second
Returns the value of thesecondrecord component.- Returns:
- the value of the
secondrecord component
-
third
Returns the value of thethirdrecord component.- Returns:
- the value of the
thirdrecord component
-