Enum State.Type

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<State.Type>
    Enclosing class:
    State

    public static enum State.Type
    extends java.lang.Enum<State.Type>
    The type of operation
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CHEST
      Arrive at the chest
      DOWN
      Move down
      ENEMY
      The enemy
      EXIT
      Arrive at the exit
      KEY
      Arrive at the key
      LEFT
      Move left
      PLAYER
      The player
      PORTAL
      Arrive at the portal
      RIGHT
      Move right
      UP
      Move up
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static State.Type valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static State.Type[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • PLAYER

        public static final State.Type PLAYER
        The player
      • ENEMY

        public static final State.Type ENEMY
        The enemy
      • KEY

        public static final State.Type KEY
        Arrive at the key
      • CHEST

        public static final State.Type CHEST
        Arrive at the chest
      • PORTAL

        public static final State.Type PORTAL
        Arrive at the portal
      • EXIT

        public static final State.Type EXIT
        Arrive at the exit
      • DOWN

        public static final State.Type DOWN
        Move down
      • LEFT

        public static final State.Type LEFT
        Move left
      • RIGHT

        public static final State.Type RIGHT
        Move right
    • Method Detail

      • values

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

        public static State.Type 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