Class Quartet<U,V,W,X>
java.lang.Object
cloud.commandframework.types.tuples.Quartet<U,V,W,X>
- Type Parameters:
U- First typeV- Second typeW- Third typeX- Fourth type
- All Implemented Interfaces:
Tuple
Immutable generic 5-tuple
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanfinal @NonNull UgetFirst()Get the first valuefinal @NonNull XGet the fourth valuefinal @NonNull VGet the second valuefinal intgetSize()Get the tuple sizefinal @NonNull WgetThird()Get the third valuefinal inthashCode()static <U,V, W, X> @NonNull Quartet<@NonNull U, @NonNull V, @NonNull W, @NonNull X> of(@NonNull U first, @NonNull V second, @NonNull W third, @NonNull X fourth) Create a new 4-tuplefinal @NonNull Object @NonNull []toArray()Turn the tuple into a type erased arrayfinal StringtoString()
-
Constructor Details
-
Quartet
-
-
Method Details
-
of
public static <U,V, @NonNull Quartet<@NonNull U,W, X> @NonNull V, of@NonNull W, @NonNull X> (@NonNull U first, @NonNull V second, @NonNull W third, @NonNull X fourth) Create a new 4-tuple- Type Parameters:
U- First typeV- Second typeW- Third typeX- Fourth type- Parameters:
first- First valuesecond- Second valuethird- Third valuefourth- Fourth value- Returns:
- Created quartet
-
getFirst
Get the first value- Returns:
- First value
-
getSecond
Get the second value- Returns:
- Second value
-
getThird
Get the third value- Returns:
- Third value
-
getFourth
Get the fourth value- Returns:
- Fourth value
-
equals
-
hashCode
public final int hashCode() -
toString
-
getSize
public final int getSize()Description copied from interface:TupleGet the tuple size -
toArray
Description copied from interface:TupleTurn the tuple into a type erased array
-