|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ActionParametersMap
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface java.util.Map |
---|
Map.Entry<K,V> |
Method Summary | |
---|---|
boolean |
getBoolean(String key)
Returns a boolean value from the map of parameters. |
double |
getDouble(String key,
double defaultValue)
Retrieve Double value from the map of parameters. |
Map<String,File> |
getFiles()
Returns map of Files uploaded to this form. |
int |
getInt(String key,
int defaultValue)
Retrieve Integer value from the map of parameters. |
long |
getLong(String key,
long defaultValue)
Retrieve Long value from the map of parameters. |
Map<String,Object> |
getParameters()
Returns internal map of parameters. |
String |
getString(String key)
Returns a String value from the map of parameters. |
String |
getString(String key,
String defaultString)
Returns a String value from the map of parmeters. |
String[] |
getStringArray(String key)
Returns a String[] value from the map of parameters. |
Methods inherited from interface java.util.Map |
---|
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values |
Method Detail |
---|
@Nullable String getString(@Nullable String key)
key
- Key of value to be searched in the map
@NotNull String getString(@Nullable String key, @NotNull String defaultString)
key
- Key of value to be searched in the mapdefaultString
- the default string to return if the property does not exist in the map
@Nullable String[] getStringArray(@Nullable String key)
key
- Key of value to be searched in the map
int getInt(@Nullable String key, int defaultValue)
key
- Key of value to be searched in the mapdefaultValue
- Default value to be returned if key not found or not convertible to Integer
long getLong(@Nullable String key, long defaultValue)
key
- Key of value to be searched in the mapdefaultValue
- Default value to be returned if key not found or not convertible to Long
double getDouble(@Nullable String key, double defaultValue)
key
- Key of value to be searched in the mapdefaultValue
- Default value to be returned if key not found or not convertible to Double
boolean getBoolean(@Nullable String key)
key
- Key of value to be searched in the map
@NotNull Map<String,File> getFiles()
Map<String,Object> getParameters()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |