com.github.dakusui.symfonion.song
Enum Keyword
java.lang.Object
java.lang.Enum<Keyword>
com.github.dakusui.symfonion.song.Keyword
- All Implemented Interfaces:
- Serializable, Comparable<Keyword>
public enum Keyword
- extends Enum<Keyword>
|
Method Summary |
static Keyword |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Keyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
$accent
public static final Keyword $accent
$aftertouch
public static final Keyword $aftertouch
$arpegio
public static final Keyword $arpegio
$bank
public static final Keyword $bank
$beats
public static final Keyword $beats
$body
public static final Keyword $body
$channel
public static final Keyword $channel
$chorus
public static final Keyword $chorus
$default
public static final Keyword $default
$device
public static final Keyword $device
$devices
public static final Keyword $devices
$gate
public static final Keyword $gate
$groove
public static final Keyword $groove
$grooves
public static final Keyword $grooves
$length
public static final Keyword $length
$mididevice
public static final Keyword $mididevice
$modulation
public static final Keyword $modulation
$normal
public static final Keyword $normal
$notemap
public static final Keyword $notemap
$notemaps
public static final Keyword $notemaps
$notes
public static final Keyword $notes
$pan
public static final Keyword $pan
$parameters
public static final Keyword $parameters
$parts
public static final Keyword $parts
$patterns
public static final Keyword $patterns
$percussion
public static final Keyword $percussion
$pitch
public static final Keyword $pitch
$port
public static final Keyword $port
$program
public static final Keyword $program
$reverb
public static final Keyword $reverb
$sequence
public static final Keyword $sequence
$settings
public static final Keyword $settings
$sysex
public static final Keyword $sysex
$tempo
public static final Keyword $tempo
$transpose
public static final Keyword $transpose
$velocitybase
public static final Keyword $velocitybase
$velocitydelta
public static final Keyword $velocitydelta
$volume
public static final Keyword $volume
$ticks
public static final Keyword $ticks
values
public static Keyword[] 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 (Keyword c : Keyword.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Keyword valueOf(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:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2013. All Rights Reserved.