org.kinsources.kiwa.website.myspace
Enum MySpaceView.Menu

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

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


Enum Constant Summary
DATASET_FORMATS
           
HOW_TO_CHOOSE_A_LICENSE
           
HOW_TO_SUBMIT_A_DATASET
           
HOW_TO_USE_KINSOURCES
           
MY_ACCOUNT
           
MY_COLLABORATIONS
           
MY_COLLABORATORS
           
MY_PUBLISHED_DATASETS
           
MY_REQUESTS
           
MY_SPACE
           
MY_STARTED_DATASETS
           
MY_SUBMITTED_DATASETS
           
NONE
           
TOOLS
           
 
Method Summary
static MySpaceView.Menu valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MySpaceView.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 MySpaceView.Menu NONE

MY_SPACE

public static final MySpaceView.Menu MY_SPACE

MY_ACCOUNT

public static final MySpaceView.Menu MY_ACCOUNT

MY_STARTED_DATASETS

public static final MySpaceView.Menu MY_STARTED_DATASETS

MY_SUBMITTED_DATASETS

public static final MySpaceView.Menu MY_SUBMITTED_DATASETS

MY_PUBLISHED_DATASETS

public static final MySpaceView.Menu MY_PUBLISHED_DATASETS

MY_REQUESTS

public static final MySpaceView.Menu MY_REQUESTS

MY_COLLABORATIONS

public static final MySpaceView.Menu MY_COLLABORATIONS

MY_COLLABORATORS

public static final MySpaceView.Menu MY_COLLABORATORS

HOW_TO_USE_KINSOURCES

public static final MySpaceView.Menu HOW_TO_USE_KINSOURCES

HOW_TO_SUBMIT_A_DATASET

public static final MySpaceView.Menu HOW_TO_SUBMIT_A_DATASET

HOW_TO_CHOOSE_A_LICENSE

public static final MySpaceView.Menu HOW_TO_CHOOSE_A_LICENSE

DATASET_FORMATS

public static final MySpaceView.Menu DATASET_FORMATS

TOOLS

public static final MySpaceView.Menu TOOLS
Method Detail

values

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