public enum Beat extends java.lang.Enum<Beat>
EsxPackage.getBeat()
Enum Constant and Description |
---|
BEAT_16_TRI
The 'Beat 16 Tri' literal object.
|
BEAT_16TH
The 'Beat 16th' literal object.
|
BEAT_32ND
The 'Beat 32nd' literal object.
|
BEAT_8TRI
The 'Beat 8Tri' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
BEAT_16_TRI_VALUE
The 'Beat 16 Tri' literal value.
|
static int |
BEAT_16TH_VALUE
The 'Beat 16th' literal value.
|
static int |
BEAT_32ND_VALUE
The 'Beat 32nd' literal value.
|
static int |
BEAT_8TRI_VALUE
The 'Beat 8Tri' literal value.
|
static java.util.List<Beat> |
VALUES
A public read-only list of all the 'Beat' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static Beat |
get(int value)
Returns the 'Beat' literal with the specified integer value.
|
static Beat |
get(java.lang.String literal)
Returns the 'Beat' literal with the specified literal value.
|
static Beat |
getByName(java.lang.String name)
Returns the 'Beat' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static Beat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Beat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Beat BEAT_16TH
BEAT_16TH_VALUE
public static final Beat BEAT_32ND
BEAT_32ND_VALUE
public static final Beat BEAT_8TRI
BEAT_8TRI_VALUE
public static final Beat BEAT_16_TRI
BEAT_16_TRI_VALUE
public static final int BEAT_16TH_VALUE
If the meaning of 'Beat 16th' literal object isn't clear, there really should be more of a description here...
BEAT_16TH
,
Constant Field Valuespublic static final int BEAT_32ND_VALUE
If the meaning of 'Beat 32nd' literal object isn't clear, there really should be more of a description here...
BEAT_32ND
,
Constant Field Valuespublic static final int BEAT_8TRI_VALUE
If the meaning of 'Beat 8Tri' literal object isn't clear, there really should be more of a description here...
BEAT_8TRI
,
Constant Field Valuespublic static final int BEAT_16_TRI_VALUE
If the meaning of 'Beat 16 Tri' literal object isn't clear, there really should be more of a description here...
BEAT_16_TRI
,
Constant Field Valuespublic static final java.util.List<Beat> VALUES
public static Beat[] values()
for (Beat c : Beat.values()) System.out.println(c);
public static Beat 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 nullpublic static Beat get(java.lang.String literal)
public static Beat getByName(java.lang.String name)
public static Beat get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<Beat>