Package jag.game.type
Interface RSEnumDefinition
-
- All Superinterfaces:
RSDoublyLinkedNode
,RSNode
,RSProvider
public interface RSEnumDefinition extends RSDoublyLinkedNode
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description int
getDefaultInteger()
String
getDefaultString()
char
getInputDescriptor()
default int
getInteger(int ordinal)
int[]
getIntegers()
int[]
getOrdinals()
char
getOutputDescriptor()
default String
getString(int ordinal)
String[]
getStrings()
-
Methods inherited from interface jag.RSDoublyLinkedNode
getDoublyKey, getNextDoubly, getPreviousDoubly
-
Methods inherited from interface jag.RSNode
getKey, getNext, getPrevious, unlink
-
-
-
-
Method Detail
-
getStrings
String[] getStrings()
-
getIntegers
int[] getIntegers()
-
getInputDescriptor
char getInputDescriptor()
-
getOutputDescriptor
char getOutputDescriptor()
-
getOrdinals
int[] getOrdinals()
-
getDefaultString
String getDefaultString()
-
getDefaultInteger
int getDefaultInteger()
-
getInteger
default int getInteger(int ordinal)
-
getString
default String getString(int ordinal)
-
-