Package net.runelite.api
Interface EnumComposition
-
public interface EnumComposition
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int[]getIntVals()intgetIntValue(int key)int[]getKeys()long[]getLongVals()longgetLongValue(int key)java.lang.String[]getStringVals()java.lang.StringgetStringValue(int key)intsize()
-
-
-
Method Detail
-
size
int size()
-
getKeys
int[] getKeys()
-
getIntVals
int[] getIntVals()
-
getLongVals
long[] getLongVals()
-
getStringVals
java.lang.String[] getStringVals()
-
getIntValue
int getIntValue(int key)
-
getStringValue
java.lang.String getStringValue(int key)
-
getLongValue
long getLongValue(int key)
-
-