Enum SimpleConsole.ExitMode

java.lang.Object
java.lang.Enum<SimpleConsole.ExitMode>
org.bzdev.swing.SimpleConsole.ExitMode
All Implemented Interfaces:
Serializable, Comparable<SimpleConsole.ExitMode>
Enclosing class:
SimpleConsole

public static enum SimpleConsole.ExitMode extends Enum<SimpleConsole.ExitMode>
Mode determining what happens when a frame created by SimpleConsole.newFramedInstance(int,int,String,boolean,SimpleConsole.ExitMode) closes.
  • Enum Constant Details

    • ALWAYS

      public static final SimpleConsole.ExitMode ALWAYS
      The application always exits.
    • ASK

      public static final SimpleConsole.ExitMode ASK
      Ask if the application should exit. If the user chooses 'OK', the application will exit; otherwise the frame will remain visible.
    • NEVER

      public static final SimpleConsole.ExitMode NEVER
      The application never exits. In this case, the frame's visibility will be changed so that the frame is not visible.
  • Method Details

    • values

      public static SimpleConsole.ExitMode[] 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 SimpleConsole.ExitMode 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