org.kinsources.kiwa.website.editorial
Enum HowToView.MenuItem

java.lang.Object
  extended by java.lang.Enum<HowToView.MenuItem>
      extended by org.kinsources.kiwa.website.editorial.HowToView.MenuItem
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HowToView.MenuItem>
Enclosing class:
HowToView

public static enum HowToView.MenuItem
extends java.lang.Enum<HowToView.MenuItem>


Enum Constant Summary
DATASET_FORMATS
           
HOW_TO_CHOOSE_A_LICENSE
           
HOW_TO_SUBMIT_A_DATASET
           
HOW_TO_USE_KINSOURCES
           
TOOLS
           
 
Method Summary
static HowToView.MenuItem valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HowToView.MenuItem[] 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

HOW_TO_USE_KINSOURCES

public static final HowToView.MenuItem HOW_TO_USE_KINSOURCES

HOW_TO_SUBMIT_A_DATASET

public static final HowToView.MenuItem HOW_TO_SUBMIT_A_DATASET

HOW_TO_CHOOSE_A_LICENSE

public static final HowToView.MenuItem HOW_TO_CHOOSE_A_LICENSE

DATASET_FORMATS

public static final HowToView.MenuItem DATASET_FORMATS

TOOLS

public static final HowToView.MenuItem TOOLS
Method Detail

values

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

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

valueOf

public static HowToView.MenuItem 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