|
|||||||||
| Home >> All >> com >> lutris >> [ util overview ] | PREV NEXT | ||||||||
Uses of Class
com.lutris.util.ConfigException
| Uses of ConfigException in com.lutris.util |
| Methods in com.lutris.util that throw ConfigException | |
int |
Config.containsCount(java.lang.String key)
Returns the number of data elements for a given key, or -1 if the key is not found. |
boolean |
Config.isArray(java.lang.String key)
Is the key is an array, or a single value. |
private long[] |
Config.getLongsInternal(java.lang.String key,
int count)
Returns the array of longs associated with a given key. |
long |
Config.getLong(java.lang.String key)
Returns a single long integer value associated with a given key. |
long |
Config.getLong(java.lang.String key,
long defaultValue)
Returns a single long integer value associated with a given key. |
long[] |
Config.getLongs(java.lang.String key)
Returns all long integer values associated with a given key. |
long[] |
Config.getLongs(java.lang.String key,
long[] defaultValue)
Returns all long integer values associated with a given key. |
private int[] |
Config.getIntsInternal(java.lang.String key,
int count)
Returns the array of integers associated with a given key. |
int |
Config.getInt(java.lang.String key)
Returns a single integer value associated with a given key. |
int |
Config.getInt(java.lang.String key,
int defaultValue)
Returns a single integer value associated with a given key. |
int[] |
Config.getInts(java.lang.String key)
Returns all integer values associated with a given key. |
int[] |
Config.getInts(java.lang.String key,
int[] defaultValue)
Returns all integer values associated with a given key. |
private java.lang.String[] |
Config.getStringsInternal(java.lang.String key,
int count)
Returns the array of strings associated with a given key. |
java.lang.String |
Config.getString(java.lang.String key)
Returns a single String value associated with a given key. |
java.lang.String |
Config.getString(java.lang.String key,
java.lang.String defaultValue)
Returns a single String value associated with a given key. |
java.lang.String[] |
Config.getStrings(java.lang.String key)
Returns all String values associated with a given key. |
java.lang.String[] |
Config.getStrings(java.lang.String key,
java.lang.String[] defaultValue)
Returns all String values associated with a given key. |
private boolean[] |
Config.getBooleansInternal(java.lang.String key,
int count)
Returns the array of booleans associated with a given key. |
boolean |
Config.getBoolean(java.lang.String key)
Returns a single boolean value associated with a given key. |
boolean |
Config.getBoolean(java.lang.String key,
boolean defaultValue)
Returns a single boolean value associated with a given key. |
boolean[] |
Config.getBooleans(java.lang.String key)
Returns all boolean values associated with a given key. |
boolean[] |
Config.getBooleans(java.lang.String key,
boolean[] defaultValue)
Returns all boolean values associated with a given key. |
private double[] |
Config.getDoublesInternal(java.lang.String key,
int count)
Returns the array of doubles associated with a given key. |
double |
Config.getDouble(java.lang.String key)
Returns a single double value associated with a given key. |
double |
Config.getDouble(java.lang.String key,
double defaultValue)
Returns a single double value associated with a given key. |
double[] |
Config.getDoubles(java.lang.String key)
Returns all double values associated with a given key. |
double[] |
Config.getDoubles(java.lang.String key,
double[] defaultValue)
Returns all double values associated with a given key. |
| Constructors in com.lutris.util that throw ConfigException | |
ConfigFile(java.io.InputStream inputStream)
Constructor from an InputStream. |
|
ConfigFile(java.io.File configFile)
Constructor from a File. |
|
ConfigFile(KeywordValueTable kvt)
Constructor from a KeywordValueTable. |
|
|
|||||||||
| Home >> All >> com >> lutris >> [ util overview ] | PREV NEXT | ||||||||