public static enum Value.Display extends java.lang.Enum<Value.Display>
Enum Constant and Description |
---|
Hidden |
Optional |
ReadOnly |
Required |
Modifier and Type | Method and Description |
---|---|
static Value.Display |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Value.Display[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Value.Display Required
public static final Value.Display Optional
public static final Value.Display ReadOnly
public static final Value.Display Hidden
public static Value.Display[] values()
for (Value.Display c : Value.Display.values()) System.out.println(c);
public static Value.Display 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 nullCopyright © 2019 CenturyLink, Inc.