public static enum Metadata.UnderrideLevel extends 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(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(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 © 2016 Google, Inc.. All rights reserved.