public enum ShowDestination extends java.lang.Enum<ShowDestination>
Enum Constant and Description |
---|
NEW
A new (additional) document view should always be opened.
|
REPLACE
The current document view should be replaced.
|
Modifier and Type | Method and Description |
---|---|
static ShowDestination |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShowDestination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShowDestination REPLACE
public static final ShowDestination NEW
public static ShowDestination[] values()
for (ShowDestination c : ShowDestination.values()) System.out.println(c);
public static ShowDestination 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 nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.