Searched refs:configMap (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/config/
H A DAbstractQueryConfig.java41 final private HashMap<ConfigurationKey<?>, Object> configMap = new HashMap<ConfigurationKey<?>, Object>(); field in class:AbstractQueryConfig
63 return (T) this.configMap.get(key);
85 if (this.configMap.containsKey(key)) {
86 return (T) this.configMap.get(key);
106 return this.configMap.containsKey(key);
127 this.configMap.put(key, value);
163 return this.configMap.remove(key) != null;

Completed in 33 milliseconds