public enum SetFeature extends java.lang.Enum<SetFeature> implements Feature<java.util.Set>
Set.| Modifier and Type | Class and Description |
|---|---|
static interface |
SetFeature.Require |
| Enum Constant and Description |
|---|
GENERAL_PURPOSE |
| Modifier and Type | Field and Description |
|---|---|
private java.util.Set<Feature<? super java.util.Set>> |
implied |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<Feature<? super java.util.Set>> |
getImpliedFeatures()
Returns the set of features that are implied by this feature.
|
static SetFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SetFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetFeature GENERAL_PURPOSE
private final java.util.Set<Feature<? super java.util.Set>> implied
public static SetFeature[] values()
for (SetFeature c : SetFeature.values()) System.out.println(c);
public static SetFeature valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.util.Set<Feature<? super java.util.Set>> getImpliedFeatures()
FeaturegetImpliedFeatures in interface Feature<java.util.Set>