public interface TableProviderParameters
| Modifier and Type | Method and Description | 
|---|---|
double | 
getDouble(String parameterKey,
         double defaultValue)
Get the first parameter with this key, interpreted as an double. 
 | 
int | 
getInt(String parameterKey,
      int defaultValue)
Get the first parameter with this key, interpreted as an integer. 
 | 
Set<String> | 
getKeys()
Get all the keys that were specified. 
 | 
List<String> | 
getMultivalue(String parameterKey)
For keys that might appear more than once, this will return all of the values for that key. 
 | 
String | 
getString(String parameterKey,
         String defaultValue)
Get the first parameter with this key, trimmed. 
 | 
String getString(String parameterKey, String defaultValue)
parameterKey - defaultValue - int getInt(String parameterKey, int defaultValue)
parameterKey - defaultValue - double getDouble(String parameterKey, double defaultValue)
parameterKey - defaultValue - List<String> getMultivalue(String parameterKey)
parameterKey - Copyright © 2015–2019 Cloud Software Group, Inc.. All rights reserved.