net.charlesames.music.musicxml.attribute
Enum MaestroTimesCharacter

java.lang.Object
  extended by java.lang.Enum<MaestroTimesCharacter>
      extended by net.charlesames.music.musicxml.attribute.MaestroTimesCharacter
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MaestroTimesCharacter>

public enum MaestroTimesCharacter
extends java.lang.Enum<MaestroTimesCharacter>


Enum Constant Summary
BEAMED_EIGHTH_NOTE
           
BEAMED_SIXTEENTH_NOTE
           
BEAMED_THIRTYSECOND_NOTE
           
DOT
           
EIGHTH_NOTE
           
HALF_NOTE
           
QUARTER_NOTE
           
SIXTEENTH_NOTE
           
SIXTYFOURTH_NOTE
           
THIRTYSECOND_NOTE
           
WHOLE_NOTE
           
 
Method Summary
 char character()
          The character value.
static MaestroTimesCharacter valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MaestroTimesCharacter[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

WHOLE_NOTE

public static final MaestroTimesCharacter WHOLE_NOTE

HALF_NOTE

public static final MaestroTimesCharacter HALF_NOTE

QUARTER_NOTE

public static final MaestroTimesCharacter QUARTER_NOTE

EIGHTH_NOTE

public static final MaestroTimesCharacter EIGHTH_NOTE

BEAMED_EIGHTH_NOTE

public static final MaestroTimesCharacter BEAMED_EIGHTH_NOTE

SIXTEENTH_NOTE

public static final MaestroTimesCharacter SIXTEENTH_NOTE

BEAMED_SIXTEENTH_NOTE

public static final MaestroTimesCharacter BEAMED_SIXTEENTH_NOTE

THIRTYSECOND_NOTE

public static final MaestroTimesCharacter THIRTYSECOND_NOTE

BEAMED_THIRTYSECOND_NOTE

public static final MaestroTimesCharacter BEAMED_THIRTYSECOND_NOTE

SIXTYFOURTH_NOTE

public static final MaestroTimesCharacter SIXTYFOURTH_NOTE

DOT

public static final MaestroTimesCharacter DOT
Method Detail

values

public static MaestroTimesCharacter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MaestroTimesCharacter c : MaestroTimesCharacter.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MaestroTimesCharacter valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

character

public char character()
The character value.

Returns:
The character value.