public enum WorkbenchType extends Enum<WorkbenchType>
| Enum Constant and Description |
|---|
DELTA |
DERIVATIVE |
EXTRACT |
FULL |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static WorkbenchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkbenchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkbenchType FULL
public static final WorkbenchType DELTA
public static final WorkbenchType EXTRACT
public static final WorkbenchType DERIVATIVE
public static final WorkbenchType UNKNOWN
public static WorkbenchType[] values()
for (WorkbenchType c : WorkbenchType.values()) System.out.println(c);
public static WorkbenchType 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 nullpublic String value()
Copyright © 2017. All rights reserved.