Enum Frame.State

java.lang.Object
java.lang.Enum<Frame.State>
io.guise.framework.component.Frame.State
All Implemented Interfaces:
Serializable, Comparable<Frame.State>
Enclosing interface:
Frame

public static enum Frame.State extends Enum<Frame.State>
The state of the frame.
  • Enum Constant Details

    • CLOSED

      public static final Frame.State CLOSED
      The frame is closed.
    • OPEN

      public static final Frame.State OPEN
      The frame is open.
  • Method Details

    • values

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

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