org.kinsources.kiwa.website.kidarep.wizard
Enum WizardView.Menu

java.lang.Object
  extended by java.lang.Enum<WizardView.Menu>
      extended by org.kinsources.kiwa.website.kidarep.wizard.WizardView.Menu
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WizardView.Menu>
Enclosing class:
WizardView

public static enum WizardView.Menu
extends java.lang.Enum<WizardView.Menu>


Enum Constant Summary
ATTACHMENT_UPLOAD
           
ATTRIBUTE_FILTERS
           
CONCLUSION
           
DATASET_CREATION
           
DATASET_SUBMIT
           
FILE_UPLOAD
           
INTRODUCTION
           
METADATA_EDITION
           
 
Method Summary
static WizardView.Menu valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WizardView.Menu[] 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

INTRODUCTION

public static final WizardView.Menu INTRODUCTION

DATASET_CREATION

public static final WizardView.Menu DATASET_CREATION

METADATA_EDITION

public static final WizardView.Menu METADATA_EDITION

FILE_UPLOAD

public static final WizardView.Menu FILE_UPLOAD

ATTACHMENT_UPLOAD

public static final WizardView.Menu ATTACHMENT_UPLOAD

ATTRIBUTE_FILTERS

public static final WizardView.Menu ATTRIBUTE_FILTERS

DATASET_SUBMIT

public static final WizardView.Menu DATASET_SUBMIT

CONCLUSION

public static final WizardView.Menu CONCLUSION
Method Detail

values

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

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

valueOf

public static WizardView.Menu 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