public enum WorkspaceType extends Enum<WorkspaceType>
Enum Constant and Description |
---|
MANUAL |
SPEC |
STATIC |
STREAM |
TEMPLATED |
Modifier and Type | Method and Description |
---|---|
static WorkspaceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkspaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkspaceType MANUAL
public static final WorkspaceType STATIC
public static final WorkspaceType TEMPLATED
public static final WorkspaceType STREAM
public static final WorkspaceType SPEC
public static WorkspaceType[] values()
for (WorkspaceType c : WorkspaceType.values()) System.out.println(c);
public static WorkspaceType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2004-2014. All Rights Reserved.