public enum SequencerType extends Enum<SequencerType>
| Enum Constant and Description |
|---|
bucket
Dispense elements from pre-filled buckets in rotation until they are all empty.
|
concat
Dispense all of the first element, then all of the second, and so forth.
|
interval
Space out elements each according to their frequency over the unit interval, with
// order of appearance taking precedence over equal timing, then take all events in
// the order that they appear on the unit interval.
|
| Modifier and Type | Method and Description |
|---|---|
static SequencerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequencerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequencerType concat
public static final SequencerType bucket
public static final SequencerType interval
public static SequencerType[] values()
for (SequencerType c : SequencerType.values()) System.out.println(c);
public static SequencerType 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 nullCopyright © 2017. All rights reserved.