Package org.elasticsearch.search.lookup
Class LeafDocLookup
- java.lang.Object
-
- org.elasticsearch.search.lookup.LeafDocLookup
-
- All Implemented Interfaces:
Map<String,ScriptDocValues<?>>
public class LeafDocLookup extends Object implements Map<String,ScriptDocValues<?>>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String,ScriptDocValues<?>>>entrySet()ScriptDocValues<?>get(Object key)IndexFieldData<?>getForField(MappedFieldType fieldType)booleanisEmpty()Set<String>keySet()MapperServicemapperService()ScriptDocValues<?>put(String key, ScriptDocValues<?> value)voidputAll(Map<? extends String,? extends ScriptDocValues<?>> m)ScriptDocValues<?>remove(Object key)voidsetDocument(int docId)intsize()Collection<ScriptDocValues<?>>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
mapperService
public MapperService mapperService()
-
getForField
public IndexFieldData<?> getForField(MappedFieldType fieldType)
-
setDocument
public void setDocument(int docId)
-
get
public ScriptDocValues<?> get(Object key)
- Specified by:
getin interfaceMap<String,ScriptDocValues<?>>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<String,ScriptDocValues<?>>
-
size
public int size()
- Specified by:
sizein interfaceMap<String,ScriptDocValues<?>>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceMap<String,ScriptDocValues<?>>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<String,ScriptDocValues<?>>
-
put
public ScriptDocValues<?> put(String key, ScriptDocValues<?> value)
- Specified by:
putin interfaceMap<String,ScriptDocValues<?>>
-
remove
public ScriptDocValues<?> remove(Object key)
- Specified by:
removein interfaceMap<String,ScriptDocValues<?>>
-
putAll
public void putAll(Map<? extends String,? extends ScriptDocValues<?>> m)
- Specified by:
putAllin interfaceMap<String,ScriptDocValues<?>>
-
clear
public void clear()
- Specified by:
clearin interfaceMap<String,ScriptDocValues<?>>
-
keySet
public Set<String> keySet()
- Specified by:
keySetin interfaceMap<String,ScriptDocValues<?>>
-
values
public Collection<ScriptDocValues<?>> values()
- Specified by:
valuesin interfaceMap<String,ScriptDocValues<?>>
-
entrySet
public Set<Map.Entry<String,ScriptDocValues<?>>> entrySet()
- Specified by:
entrySetin interfaceMap<String,ScriptDocValues<?>>
-
-