public static enum Features.SpecialFeature extends java.lang.Enum<Features.SpecialFeature>
| Enum Constant and Description |
|---|
ABOUT |
BUILD_STATUS |
NOT_IMPLEMENTED |
| Modifier and Type | Method and Description |
|---|---|
static Features.SpecialFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Features.SpecialFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Features.SpecialFeature ABOUT
public static final Features.SpecialFeature BUILD_STATUS
public static final Features.SpecialFeature NOT_IMPLEMENTED
public static Features.SpecialFeature[] values()
for (Features.SpecialFeature c : Features.SpecialFeature.values()) System.out.println(c);
public static Features.SpecialFeature 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 null