public enum UESArtifactNavigationAreaDisplayMode extends java.lang.Enum<UESArtifactNavigationAreaDisplayMode>
Enum Constant and Description |
---|
DEFAULT
Default setting of navigation area visibility.
|
HIDDEN
Navigation area hidden.
|
NAVIGATION_BAR_ONLY
Navigation bar is visible.
|
VISIBLE
Navigation area visible.
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
value |
Modifier and Type | Method and Description |
---|---|
static UESArtifactNavigationAreaDisplayMode |
fromValue(java.lang.String value)
Return enum type.
|
static UESArtifactNavigationAreaDisplayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UESArtifactNavigationAreaDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (UESArtifactNavigationAreaDisplayMode c : UESArtifactNavigationAreaDisplayMode.values()) System.out.println(c);
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 nullvalue
-