Package net.runelite.cache
Enum IndexType
- java.lang.Object
-
- java.lang.Enum<IndexType>
-
- net.runelite.cache.IndexType
-
- All Implemented Interfaces:
Serializable,Comparable<IndexType>
public enum IndexType extends Enum<IndexType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANIMATIONSANIMAYASBINARYCLIENTSCRIPTCONFIGSDBTABLEINDEXFONTSGAMEVALSINTERFACESMAPSMODELSMUSIC_JINGLESMUSIC_PATCHESMUSIC_SAMPLESMUSIC_TRACKSSKELETONSSOUNDEFFECTSSPRITESTEXTURESWORLDMAPWORLDMAP_GEOGRAPHYWORLDMAP_GROUND
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetNumber()static IndexTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IndexType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANIMATIONS
public static final IndexType ANIMATIONS
-
SKELETONS
public static final IndexType SKELETONS
-
CONFIGS
public static final IndexType CONFIGS
-
INTERFACES
public static final IndexType INTERFACES
-
SOUNDEFFECTS
public static final IndexType SOUNDEFFECTS
-
MAPS
public static final IndexType MAPS
-
MUSIC_TRACKS
public static final IndexType MUSIC_TRACKS
-
MODELS
public static final IndexType MODELS
-
SPRITES
public static final IndexType SPRITES
-
TEXTURES
public static final IndexType TEXTURES
-
BINARY
public static final IndexType BINARY
-
MUSIC_JINGLES
public static final IndexType MUSIC_JINGLES
-
CLIENTSCRIPT
public static final IndexType CLIENTSCRIPT
-
FONTS
public static final IndexType FONTS
-
MUSIC_SAMPLES
public static final IndexType MUSIC_SAMPLES
-
MUSIC_PATCHES
public static final IndexType MUSIC_PATCHES
-
WORLDMAP_GEOGRAPHY
public static final IndexType WORLDMAP_GEOGRAPHY
-
WORLDMAP
public static final IndexType WORLDMAP
-
WORLDMAP_GROUND
public static final IndexType WORLDMAP_GROUND
-
DBTABLEINDEX
public static final IndexType DBTABLEINDEX
-
ANIMAYAS
public static final IndexType ANIMAYAS
-
GAMEVALS
public static final IndexType GAMEVALS
-
-
Method Detail
-
values
public static IndexType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IndexType c : IndexType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IndexType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getNumber
public int getNumber()
-
-