public static enum FeatureExtension.Kind extends Enum<FeatureExtension.Kind>
| Enum Constant and Description |
|---|
MANDATORY
A mandatory extension must be processed.
|
OPTIONAL
An optional extension can be ignored if no processor is found.
|
TRANSIENT
A transient extension contains computed information which can be used
as a cache to speed up operation.
|
| Modifier and Type | Method and Description |
|---|---|
static FeatureExtension.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeatureExtension.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureExtension.Kind MANDATORY
public static final FeatureExtension.Kind OPTIONAL
public static final FeatureExtension.Kind TRANSIENT
public static FeatureExtension.Kind[] values()
for (FeatureExtension.Kind c : FeatureExtension.Kind.values()) System.out.println(c);
public static FeatureExtension.Kind 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 © Contributors to the Eclipse Foundation Licensed under the Eclipse Foundation Specification License – v1.0