Pair
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.util.Pair;
Implements
Undocumented Interfaces
App<F, Mu<S>>
Members
Getter
// Pair<F,S>.first as FmyPair.first
Return Type:
F
getFirst() as F
// Pair<F,S>.getFirst() as F;myPair.getFirst();
Return Type:
F
Getter
// Pair<F,S>.second as SmyPair.second
Return Type:
S
getSecond() as S
// Pair<F,S>.getSecond() as S;myPair.getSecond();
Return Type:
S