Uses of Class
be.hogent.tarsos.util.ConfKey

Packages that use ConfKey
be.hogent.tarsos.midi Contains classes to handle MIDI events. 
be.hogent.tarsos.util Utility classes for string handling, logging, configuration, some DSP tasks. 
 

Uses of ConfKey in be.hogent.tarsos.midi
 

Methods in be.hogent.tarsos.midi with parameters of type ConfKey
 void TarsosSynth.configurationChanged(ConfKey key)
           
 

Uses of ConfKey in be.hogent.tarsos.util
 

Methods in be.hogent.tarsos.util that return ConfKey
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.
 

Methods in be.hogent.tarsos.util with parameters of type ConfKey
 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.