com.atlassian.jira.functest.framework.navigation
Enum BulkChangeWizard.WizardState

java.lang.Object
  extended by java.lang.Enum<BulkChangeWizard.WizardState>
      extended by com.atlassian.jira.functest.framework.navigation.BulkChangeWizard.WizardState
All Implemented Interfaces:
Serializable, Comparable<BulkChangeWizard.WizardState>
Enclosing interface:
BulkChangeWizard

public static enum BulkChangeWizard.WizardState
extends Enum<BulkChangeWizard.WizardState>

States that the wizard can be in.


Enum Constant Summary
CHOOSE_OPERATION
           
CHOOSE_TARGET_CONTEXTS
           
COMPLETE
           
CONFIRMATION
           
SELECT_ISSUES
           
SET_FIELDS
           
 
Method Summary
static BulkChangeWizard.WizardState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BulkChangeWizard.WizardState[] 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

SELECT_ISSUES

public static final BulkChangeWizard.WizardState SELECT_ISSUES

CHOOSE_OPERATION

public static final BulkChangeWizard.WizardState CHOOSE_OPERATION

CHOOSE_TARGET_CONTEXTS

public static final BulkChangeWizard.WizardState CHOOSE_TARGET_CONTEXTS

SET_FIELDS

public static final BulkChangeWizard.WizardState SET_FIELDS

CONFIRMATION

public static final BulkChangeWizard.WizardState CONFIRMATION

COMPLETE

public static final BulkChangeWizard.WizardState COMPLETE
Method Detail

values

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

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

valueOf

public static BulkChangeWizard.WizardState 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


Copyright © 2002-2012 Atlassian. All Rights Reserved.