Enum Class FasciaEdge

java.lang.Object
java.lang.Enum<FasciaEdge>
zombie.core.properties.FasciaEdge
All Implemented Interfaces:
Serializable, Comparable<FasciaEdge>, Constable

public enum FasciaEdge extends Enum<FasciaEdge>
  • Enum Constant Details

    • West

      public static final FasciaEdge West
    • North

      public static final FasciaEdge North
    • East

      public static final FasciaEdge East
    • South

      public static final FasciaEdge South
    • NorthWestCorner

      public static final FasciaEdge NorthWestCorner
    • NorthEastCorner

      public static final FasciaEdge NorthEastCorner
    • SouthEastCorner

      public static final FasciaEdge SouthEastCorner
    • SouthWestCorner

      public static final FasciaEdge SouthWestCorner
    • NorthAndWest

      public static final FasciaEdge NorthAndWest
    • NorthAndEast

      public static final FasciaEdge NorthAndEast
    • SouthAndEast

      public static final FasciaEdge SouthAndEast
    • SouthAndWest

      public static final FasciaEdge SouthAndWest
  • Method Details

    • values

      public static FasciaEdge[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FasciaEdge valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null