org.bibalex.daf.managers.phase
Enum ChangeJobTypeDialog.DialogResult

java.lang.Object
  extended by java.lang.Enum<ChangeJobTypeDialog.DialogResult>
      extended by org.bibalex.daf.managers.phase.ChangeJobTypeDialog.DialogResult
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ChangeJobTypeDialog.DialogResult>
Enclosing class:
ChangeJobTypeDialog

public static enum ChangeJobTypeDialog.DialogResult
extends java.lang.Enum<ChangeJobTypeDialog.DialogResult>

Holds the result of closing a dialog.

Author:
Shehab.Kamal

Enum Constant Summary
Cancel
          The dialog has been closed via Cancel button.
None
          The dialog has been closed via Close button or not closed yet.
This is the default DialogResult.
OK
          The dialog has been closed via OK button.
 
Method Summary
static ChangeJobTypeDialog.DialogResult valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ChangeJobTypeDialog.DialogResult[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OK

public static final ChangeJobTypeDialog.DialogResult OK
The dialog has been closed via OK button.


Cancel

public static final ChangeJobTypeDialog.DialogResult Cancel
The dialog has been closed via Cancel button.


None

public static final ChangeJobTypeDialog.DialogResult None
The dialog has been closed via Close button or not closed yet.
This is the default DialogResult.

Method Detail

values

public static final ChangeJobTypeDialog.DialogResult[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ChangeJobTypeDialog.DialogResult c : ChangeJobTypeDialog.DialogResult.values())
        System.out.println(c);

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

valueOf

public static ChangeJobTypeDialog.DialogResult 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