public static enum TransitionBuilderProperties.ApplicationRange extends Enum<TransitionBuilderProperties.ApplicationRange>
Enum Constant and Description |
---|
NONE
All pages are treated the same
|
PAGE
The last page may be treated differently
|
SHEET
The last sheet may be treated differently
|
Modifier and Type | Method and Description |
---|---|
static TransitionBuilderProperties.ApplicationRange |
parse(String value)
Parses a string as a
TransitionBuilderProperties.ApplicationRange . |
static TransitionBuilderProperties.ApplicationRange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransitionBuilderProperties.ApplicationRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransitionBuilderProperties.ApplicationRange NONE
public static final TransitionBuilderProperties.ApplicationRange PAGE
public static final TransitionBuilderProperties.ApplicationRange SHEET
public static TransitionBuilderProperties.ApplicationRange[] values()
for (TransitionBuilderProperties.ApplicationRange c : TransitionBuilderProperties.ApplicationRange.values()) System.out.println(c);
public static TransitionBuilderProperties.ApplicationRange 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 nullpublic static TransitionBuilderProperties.ApplicationRange parse(String value)
TransitionBuilderProperties.ApplicationRange
. There is a small difference of this
method compared to calling valueOf(String)
is that it is
case insensitive (since all enum members contain upper case letters only).value
- the string valueIllegalArgumentException
- if this enum type has no
constant with the specified name