Package | Description |
---|---|
be.tarsos.midi |
Contains classes to handle MIDI events.
|
be.tarsos.util |
Utility classes for string handling, logging, configuration, some DSP tasks.
|
Modifier and Type | Method and Description |
---|---|
void |
TarsosSynth.configurationChanged(ConfKey key) |
Modifier and Type | Method and Description |
---|---|
static ConfKey |
ConfKey.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfKey[] |
ConfKey.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
Configuration.ConfigChangeListener.configurationChanged(ConfKey key)
Fires when a configuration setting changes.
|
static java.lang.String |
Configuration.get(ConfKey key)
Read the configuration for a certain key.
|
static boolean |
Configuration.getBoolean(ConfKey key)
Parses a configured string as a boolean.
|
static java.lang.String |
Configuration.getDescription(ConfKey key)
Read the description name for a certain key.
|
static double |
Configuration.getDouble(ConfKey key)
Read the configuration for a certain key.
|
static java.io.File |
Configuration.getFile(ConfKey key) |
static java.lang.String |
Configuration.getHumanName(ConfKey key)
Read the human name for a certain key.
|
static int |
Configuration.getInt(ConfKey key)
Read the configured Integer for a certain key.
|
static java.util.List<java.lang.String> |
Configuration.getList(ConfKey key)
Return a list of values stored with a key
|
static PitchDetectionMode |
Configuration.getPitchDetectionMode(ConfKey key)
Return a configured PitchDetectionMode
|
static void |
Configuration.set(ConfKey key,
java.lang.Object value)
Delegates to either the set(String) method or setList method to store
strings or lists respectively.
|
static void |
Configuration.set(ConfKey key,
java.lang.String value)
Set a configuration parameter.
|