public static enum LoadWarning.E extends java.lang.Enum<LoadWarning.E>
Enum Constant and Description |
---|
accidental |
beam |
none |
part |
slur |
stem |
tied |
tuplet |
Modifier and Type | Method and Description |
---|---|
static LoadWarning.E |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoadWarning.E[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadWarning.E none
public static final LoadWarning.E beam
public static final LoadWarning.E slur
public static final LoadWarning.E tied
public static final LoadWarning.E tuplet
public static final LoadWarning.E part
public static final LoadWarning.E accidental
public static final LoadWarning.E stem
public static LoadWarning.E[] values()
for (LoadWarning.E c : LoadWarning.E.values()) System.out.println(c);
public static LoadWarning.E 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