Enum Ancient

    • Enum Constant Detail

      • EDGEVILLE_HOME_TELEPORT

        public static final Ancient EDGEVILLE_HOME_TELEPORT
      • SMOKE_RUSH

        public static final Ancient SMOKE_RUSH
      • SHADOW_RUSH

        public static final Ancient SHADOW_RUSH
      • BLOOD_RUSH

        public static final Ancient BLOOD_RUSH
      • ICE_RUSH

        public static final Ancient ICE_RUSH
      • SMOKE_BURST

        public static final Ancient SMOKE_BURST
      • SHADOW_BURST

        public static final Ancient SHADOW_BURST
      • BLOOD_BURST

        public static final Ancient BLOOD_BURST
      • ICE_BURST

        public static final Ancient ICE_BURST
      • SMOKE_BLITZ

        public static final Ancient SMOKE_BLITZ
      • SHADOW_BLITZ

        public static final Ancient SHADOW_BLITZ
      • BLOOD_BLITZ

        public static final Ancient BLOOD_BLITZ
      • ICE_BLITZ

        public static final Ancient ICE_BLITZ
      • SMOKE_BARRAGE

        public static final Ancient SMOKE_BARRAGE
      • SHADOW_BARRAGE

        public static final Ancient SHADOW_BARRAGE
      • BLOOD_BARRAGE

        public static final Ancient BLOOD_BARRAGE
      • ICE_BARRAGE

        public static final Ancient ICE_BARRAGE
      • PADDEWWA_TELEPORT

        public static final Ancient PADDEWWA_TELEPORT
      • SENNTISTEN_TELEPORT

        public static final Ancient SENNTISTEN_TELEPORT
      • GHORROCK_TELEPORT

        public static final Ancient GHORROCK_TELEPORT
    • Method Detail

      • values

        public static Ancient[] 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 (Ancient c : Ancient.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Ancient valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null