Enum MagicTeleport

    • Method Detail

      • values

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

        public static MagicTeleport 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
      • canDo

        public boolean canDo()
      • execute

        public boolean execute()
        Specified by:
        execute in interface Teleport
      • getSpell

        public Spell getSpell()
      • getAction

        public java.lang.String getAction()
      • getX

        public int getX()
        Specified by:
        getX in interface Teleport
      • getY

        public int getY()
        Specified by:
        getY in interface Teleport
      • getZ

        public int getZ()
        Specified by:
        getZ in interface Teleport