Enum IndexType

    • 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
      • 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
      • 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 name
        NullPointerException - if the argument is null
      • getNumber

        public int getNumber()