xapi.collect.api.StringTo 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;
/**
* StringTo is a special mapping interface,
* since it has the best possible native support in dictionary-oriented
* languages, like javascript, we do not extend ObjectTo, which
* forces generic override problems in the GWT compiler,
* rather, we tie in to the HasValues interface instead.
*
* @author "James X. Nelson ([email protected])"
*
* @param
*/
public interface StringTo
extends HasValues
{
V get(String key);
V put(String key, V value);
V remove(String key);
String[] keyArray();
public static interface Many
extends StringTo>
{}
}