
com.github.davidmoten.odata.client.UnmappedFields Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-runtime Show documentation
Show all versions of odata-client-runtime Show documentation
OData client runtime for use with generated code
The newest version!
package com.github.davidmoten.odata.client;
import java.util.Collection;
import java.util.Collections;
import java.util.Map.Entry;
import java.util.Set;
import com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl;
public interface UnmappedFields {
public static final UnmappedFieldsImpl EMPTY = new UnmappedFieldsImpl(Collections.emptyMap());
int size();
boolean isEmpty();
boolean containsKey(String key);
boolean containsValue(Object value);
Object get(String key);
Set keySet();
Collection
© 2015 - 2025 Weber Informatics LLC | Privacy Policy