public enum NoteStyle extends Enum<NoteStyle>
Modifier and Type | Method and Description |
---|---|
static NoteStyle |
getNoteStyle(String s) |
static NoteStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoteStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoteStyle NORMAL
public static final NoteStyle HEXAGONAL
public static final NoteStyle BOX
public static NoteStyle[] values()
for (NoteStyle c : NoteStyle.values()) System.out.println(c);
public static NoteStyle 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 nullCopyright © 2015. All Rights Reserved.