public static enum SequenceProperties.SequenceBreakBefore extends Enum<SequenceProperties.SequenceBreakBefore>
Enum Constant and Description |
---|
AUTO
Defines that volume breaks may or may not happen before this
sequence begins, depending on its location in the volume
|
VOLUME
Specifies that the sequence should start in a new volume
|
Modifier and Type | Method and Description |
---|---|
static SequenceProperties.SequenceBreakBefore |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceProperties.SequenceBreakBefore[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceProperties.SequenceBreakBefore AUTO
public static final SequenceProperties.SequenceBreakBefore VOLUME
public static SequenceProperties.SequenceBreakBefore[] values()
for (SequenceProperties.SequenceBreakBefore c : SequenceProperties.SequenceBreakBefore.values()) System.out.println(c);
public static SequenceProperties.SequenceBreakBefore 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