All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xapi.collect.api.ObjectTo Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy