public static enum Metadata.UnderrideLevel extends java.lang.Enum<Metadata.UnderrideLevel>
| Enum Constant and Description |
|---|
ABSENT
There is no underride.
|
FINAL
The underride is declared final.
|
OVERRIDEABLE
The underride can be overridden (viz.
|
| Modifier and Type | Method and Description |
|---|---|
static Metadata.UnderrideLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Metadata.UnderrideLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Metadata.UnderrideLevel ABSENT
public static final Metadata.UnderrideLevel OVERRIDEABLE
public static final Metadata.UnderrideLevel FINAL
public static Metadata.UnderrideLevel[] values()
for (Metadata.UnderrideLevel c : Metadata.UnderrideLevel.values()) System.out.println(c);
public static Metadata.UnderrideLevel 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