|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<BeamValue>
net.charlesames.music.musicxml.attribute.BeamValue
public enum BeamValue
Selection options for MusicXML BeamValue attributes.
| Enum Constant Summary | |
|---|---|
BACKWARD_HOOK
Backward hook |
|
BEGIN
Initial stem in beam |
|
CONTINUE
Intervening stem in beam |
|
END
Final stem in beam |
|
FORWARD_HOOK
Forward hook |
|
| Method Summary | |
|---|---|
static BeamValue |
fromText(java.lang.String text)
Convert beam value text to BeamValue instance. |
java.lang.String |
text()
The text value associated with this enumeration element. |
static BeamValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BeamValue[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final BeamValue BEGIN
public static final BeamValue CONTINUE
public static final BeamValue END
public static final BeamValue FORWARD_HOOK
public static final BeamValue BACKWARD_HOOK
| Method Detail |
|---|
public static BeamValue[] values()
for (BeamValue c : BeamValue.values()) System.out.println(c);
public static BeamValue 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 name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String text()
public static BeamValue fromText(java.lang.String text)
BeamValue instance.
text - Text content from an XML BeamValue corresponding to the indicated text.
java.lang.IllegalArgumentException - when there is no corresponding BeamValue instance.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||