public enum NotePosition extends java.lang.Enum<NotePosition>
| Enum Constant and Description |
|---|
BOTTOM |
LEFT |
OVER |
OVER_SEVERAL |
RIGHT |
TOP |
| Modifier and Type | Method and Description |
|---|---|
static NotePosition |
defaultLeft(java.lang.String s) |
static NotePosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotePosition LEFT
public static final NotePosition RIGHT
public static final NotePosition OVER
public static final NotePosition OVER_SEVERAL
public static final NotePosition BOTTOM
public static final NotePosition TOP
public static NotePosition[] values()
for (NotePosition c : NotePosition.values()) System.out.println(c);
public static NotePosition 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 NotePosition defaultLeft(java.lang.String s)