public enum BeamValue extends Enum<BeamValue>
Java class for beam-value.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="beam-value">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="begin"/>
<enumeration value="continue"/>
<enumeration value="end"/>
<enumeration value="forward hook"/>
<enumeration value="backward hook"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BACKWARD_HOOK |
BEGIN |
CONTINUE |
END |
FORWARD_HOOK |
| Modifier and Type | Method and Description |
|---|---|
static BeamValue |
fromValue(String v) |
String |
value() |
static BeamValue |
valueOf(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.
|
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
public static BeamValue[] values()
for (BeamValue c : BeamValue.values()) System.out.println(c);
public static BeamValue 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 nullpublic String value()
Copyright © 2016 Audiveris Ltd. All rights reserved.