public enum NotePosition extends Enum<NotePosition>
Enum Constant and Description |
---|
LEFT |
OVER |
OVER_SEVERAL |
RIGHT |
Modifier and Type | Method and Description |
---|---|
static NotePosition |
defaultLeft(String s) |
static NotePosition |
valueOf(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 NotePosition[] values()
for (NotePosition c : NotePosition.values()) System.out.println(c);
public static NotePosition 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 static NotePosition defaultLeft(String s)
Copyright © 2016. All Rights Reserved.