org.gcube.portlets.user.homelibrary.home.workspace
Enum WorkspaceAreaItemType

java.lang.Object
  extended by java.lang.Enum<WorkspaceAreaItemType>
      extended by org.gcube.portlets.user.homelibrary.home.workspace.WorkspaceAreaItemType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WorkspaceAreaItemType>

public enum WorkspaceAreaItemType
extends java.lang.Enum<WorkspaceAreaItemType>

Author:
Federico De Faveri defaveri@isti.cnr.it

Enum Constant Summary
BASKET
          A basket.
BASKET_ITEM
          A basket item.
WORKSPACE
          A workspace.
 
Method Summary
static WorkspaceAreaItemType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WorkspaceAreaItemType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

WORKSPACE

public static final WorkspaceAreaItemType WORKSPACE
A workspace.


BASKET

public static final WorkspaceAreaItemType BASKET
A basket.


BASKET_ITEM

public static final WorkspaceAreaItemType BASKET_ITEM
A basket item.

Method Detail

values

public static final WorkspaceAreaItemType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(WorkspaceAreaItemType c : WorkspaceAreaItemType.values())
        System.out.println(c);

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

valueOf

public static WorkspaceAreaItemType 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