Class UnmappedFieldsImpl
- java.lang.Object
-
- com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl
-
- All Implemented Interfaces:
UnmappedFields,Map<String,Object>
public final class UnmappedFieldsImpl extends Object implements UnmappedFields, Map<String,Object>
-
-
Field Summary
-
Fields inherited from interface com.github.davidmoten.odata.client.UnmappedFields
EMPTY
-
-
Constructor Summary
Constructors Constructor Description UnmappedFieldsImpl()UnmappedFieldsImpl(Map<String,Object> map)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsKey(String key)booleancontainsValue(Object value)UnmappedFieldsImplcopy()Set<Map.Entry<String,Object>>entrySet()Objectget(Object key)Objectget(String key)booleanisEmpty()Set<String>keySet()Objectput(String key, Object value)voidputAll(Map<? extends String,? extends Object> m)Objectremove(Object key)intsize()StringtoString()Collection<Object>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, 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
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
containsKey
public boolean containsKey(String key)
- Specified by:
containsKeyin interfaceUnmappedFields
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<String,Object>- Specified by:
containsValuein interfaceUnmappedFields
-
get
public Object get(String key)
- Specified by:
getin interfaceUnmappedFields
-
values
public Collection<Object> values()
-
copy
public UnmappedFieldsImpl copy()
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<String,Object>
-
-