xapi.collect.api.ObjectTo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xapi-core-collect Show documentation
Show all versions of xapi-core-collect Show documentation
Core interfaces for our collections api.
package xapi.collect.api;
import java.util.Map.Entry;
import javax.inject.Provider;
import xapi.collect.impl.EntryIterable;
import xapi.collect.proxy.CollectionProxy;
public interface ObjectTo
extends EntryIterable, CollectionProxy, HasValues
{
static interface Many extends ObjectTo> {
}
// Inherited from CollectionProxy
// V get(K key);
// boolean remove(K key);
V put(K key, V value);
Class keyType();
Class valueType();
Class> componentType();
}