eu.livotov.tpt.gui.dialogs
Enum OptionKind

java.lang.Object
  extended by java.lang.Enum<OptionKind>
      extended by eu.livotov.tpt.gui.dialogs.OptionKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OptionKind>

public enum OptionKind
extends java.lang.Enum<OptionKind>
implements java.io.Serializable

Describes option dialog button types (options) as well as result codes, as result code from OptionDialog corresponds to the button pressed.


Enum Constant Summary
CANCEL
           
NO
           
OK
           
YES
           
 
Method Summary
static OptionKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OptionKind[] 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

OK

public static final OptionKind OK

CANCEL

public static final OptionKind CANCEL

YES

public static final OptionKind YES

NO

public static final OptionKind NO
Method Detail

values

public static OptionKind[] 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 (OptionKind c : OptionKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OptionKind 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