public static enum LoadWarning.W extends java.lang.Enum<LoadWarning.W>
Enum Constant and Description |
---|
beamcount
a note has the wrong number of beams defined for the note type
|
measurecount
different parts do not have the same number of bars (measures)
|
missingelement
|
none
no warning !
|
unclosed
beam/slur/tied/tuplet unclosed at end of score/measure
|
unexpectedContinue
beam/slur continue without start
|
unexpectedStart
beam/slur/tie/tuplet..
|
unexpectedStop
beam/slur/tie/tuplet stop without start
|
Modifier and Type | Method and Description |
---|---|
static LoadWarning.W |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoadWarning.W[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoadWarning.W none
public static final LoadWarning.W missingelement
public static final LoadWarning.W measurecount
public static final LoadWarning.W beamcount
public static final LoadWarning.W unexpectedStart
public static final LoadWarning.W unexpectedContinue
public static final LoadWarning.W unexpectedStop
public static final LoadWarning.W unclosed
public static LoadWarning.W[] values()
for (LoadWarning.W c : LoadWarning.W.values()) System.out.println(c);
public static LoadWarning.W 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