public static enum ItemSequenceProperties.Range extends Enum<ItemSequenceProperties.Range>
Enum Constant and Description |
---|
DOCUMENT
Defines the range to include the entire document
|
VOLUME
Defines the range to include entries within the volume
|
Modifier and Type | Method and Description |
---|---|
static ItemSequenceProperties.Range |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemSequenceProperties.Range[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemSequenceProperties.Range DOCUMENT
public static final ItemSequenceProperties.Range VOLUME
public static ItemSequenceProperties.Range[] values()
for (ItemSequenceProperties.Range c : ItemSequenceProperties.Range.values()) System.out.println(c);
public static ItemSequenceProperties.Range 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 null