public enum MetricalLpcfgQuantum extends java.lang.Enum<MetricalLpcfgQuantum>
MetricalGrammarTerminalQuantum
represents the lowest level within a
MetricalLpcfgTerminal
, and can either be a rest, a tie, or an onset.Enum Constant and Description |
---|
ONSET
A note onset.
|
REST
A rest.
|
TIE
A tie.
|
Modifier and Type | Method and Description |
---|---|
static MetricalLpcfgQuantum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetricalLpcfgQuantum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricalLpcfgQuantum REST
public static final MetricalLpcfgQuantum ONSET
public static final MetricalLpcfgQuantum TIE
public static MetricalLpcfgQuantum[] values()
for (MetricalLpcfgQuantum c : MetricalLpcfgQuantum.values()) System.out.println(c);
public static MetricalLpcfgQuantum 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 null