Package org.xwiki.filter
Class FilterEventParameters
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<K,V>
-
- java.util.LinkedHashMap<String,Object>
-
- org.xwiki.filter.FilterEventParameters
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,Object>
public class FilterEventParameters extends LinkedHashMap<String,Object>
Custom parameters passed to a filter event.- Since:
- 5.2M2
- Version:
- $Id: 24ff20b9562568fc4213ac3d2df522fb329c873e $
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEFAULT
The default value of aFilterEventParameters
asString
.static FilterEventParameters
EMPTY
Empty instance.static String
NAME
The name of the parameter containing the custom parameters.
-
Constructor Summary
Constructors Constructor Description FilterEventParameters()
-
Method Summary
-
Methods inherited from class java.util.LinkedHashMap
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, values
-
Methods inherited from class java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
-
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
-
-
-
-
Field Detail
-
NAME
public static final String NAME
The name of the parameter containing the custom parameters.- See Also:
- Constant Field Values
-
DEFAULT
public static final String DEFAULT
The default value of aFilterEventParameters
asString
.- See Also:
- Constant Field Values
-
EMPTY
public static final FilterEventParameters EMPTY
Empty instance.
-
-