Uses of Class
net.charlesames.music.musicxml.attribute.Mode

Packages that use Mode
net.charlesames.music.musicxml The purpose of package music.musicxml is to generate files in MusicXML format. 
net.charlesames.music.musicxml.attribute   
net.charlesames.music.score Classes in the {code net.charlesames.music.score} package represent musical scores and the components which comprise musical scores. 
 

Uses of Mode in net.charlesames.music.musicxml
 

Methods in net.charlesames.music.musicxml that return Mode
 Mode KeySignature.getMode()
          Getter for the Mode property
 

Methods in net.charlesames.music.musicxml with parameters of type Mode
 KeySignature Measure.createKeySignature(int fifths, Mode mode)
          Create a KeySignature instance with the indicated parameters.
 void KeySignature.setMode(Mode mode)
          Setter for the Mode property.
 

Uses of Mode in net.charlesames.music.musicxml.attribute
 

Methods in net.charlesames.music.musicxml.attribute that return Mode
static Mode Mode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Mode[] Mode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of Mode in net.charlesames.music.score
 

Methods in net.charlesames.music.score that return Mode
 Mode KeySignature.getMode()
          Get the mode.
 

Methods in net.charlesames.music.score with parameters of type Mode
static KeySignature KeySignature.getInstance(int fifths, Mode mode)
          Dereference a KeySignature with the specified count of accidentals and the specified mode.