public static enum Workspace.Mode extends Enum<Workspace.Mode>
Enum Constant and Description |
---|
DELTA |
ESCALATED |
NORMAL |
SUPPRESSED |
Modifier and Type | Method and Description |
---|---|
static Workspace.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Workspace.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Workspace.Mode NORMAL
public static final Workspace.Mode DELTA
public static final Workspace.Mode ESCALATED
public static final Workspace.Mode SUPPRESSED
public static Workspace.Mode[] values()
for (Workspace.Mode c : Workspace.Mode.values()) System.out.println(c);
public static Workspace.Mode 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 © 2021. All rights reserved.