protected static enum MidiRouter.specType extends java.lang.Enum<MidiRouter.specType>
Enum Constant | Description |
---|---|
DEVICE |
Specifying a
MidiDevice object. |
INFO |
Specifying a
MidiDevice.Info object. |
RECEIVER |
Specifying a
Receiver object. |
TRANSMITTER |
Specifying a
Transmitter object. |
Modifier and Type | Method | Description |
---|---|---|
static MidiRouter.specType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static MidiRouter.specType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MidiRouter.specType RECEIVER
Receiver
object.public static final MidiRouter.specType TRANSMITTER
Transmitter
object.public static final MidiRouter.specType DEVICE
MidiDevice
object.public static final MidiRouter.specType INFO
MidiDevice.Info
object.public static MidiRouter.specType[] values()
for (MidiRouter.specType c : MidiRouter.specType.values()) System.out.println(c);
public static MidiRouter.specType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.