org.kinsources.kiwa.website.browser
Enum BrowserView.Menu

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

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


Enum Constant Summary
ALL_AUTHORS
           
ALL_CONTRIBUTORS
           
ALL_DATASETS
           
ALL_FIELDS
           
ALL_ORGANIZATIONS
           
ALL_STATISTICS
           
MY_DATASETS
           
NONE
           
 
Method Summary
static BrowserView.Menu valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BrowserView.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

NONE

public static final BrowserView.Menu NONE

MY_DATASETS

public static final BrowserView.Menu MY_DATASETS

ALL_DATASETS

public static final BrowserView.Menu ALL_DATASETS

ALL_CONTRIBUTORS

public static final BrowserView.Menu ALL_CONTRIBUTORS

ALL_AUTHORS

public static final BrowserView.Menu ALL_AUTHORS

ALL_ORGANIZATIONS

public static final BrowserView.Menu ALL_ORGANIZATIONS

ALL_FIELDS

public static final BrowserView.Menu ALL_FIELDS

ALL_STATISTICS

public static final BrowserView.Menu ALL_STATISTICS
Method Detail

values

public static BrowserView.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 (BrowserView.Menu c : BrowserView.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 BrowserView.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