List of usage examples for java.util Map.Entry interface-usage
From source file com.opengamma.util.tuple.Pair.java
/**
* An immutable pair consisting of two elements.
* <p>
* This implementation refers to the elements as 'first' and 'second'.
* The class also implements the {@code Map.Entry} interface where the key is 'first'
* and the value is 'second'.
From source file org.jbuilt.utils.ClassClassMapEntry.java
public class ClassClassMapEntry<T, U> implements Map.Entry<Class<T>, Class<U>> { private Class<T> key; private Class<U> value; public ClassClassMapEntry(Class<T> key, Class<U> value) {
From source file org.jbuilt.utils.MapEntry.java
public class MapEntry implements Map.Entry<String, String> { private String key; private String value; public MapEntry(String key, String value) {
From source file com.francetelecom.clara.cloud.techmodel.cf.EnvVariable.java
/** * Represents a string-based (key, value) entry set on a Cf App, env variable * */ public class EnvVariable implements Map.Entry<EnvVariableKey, EnvVariableValue> {
From source file fr.landel.utils.commons.tuple.PairIso.java
/**
* <p>
* A pair consisting of two elements of same type.
* </p>
*
* <p>
From source file com.github.helenusdriver.commons.collections.iterators.SnapshotIterator.java
/**
* The <code>SnapshotEntry</code> class provides a snapshot
* implementation of the {@link java.util.Map.Entry} interface.
*
* @copyright 2015-2015 The Helenus Driver Project Authors
*
From source file com.bstek.dorado.config.ExpressionMethodInterceptor.java
@SuppressWarnings({ "unchecked", "rawtypes" }) class MapEntry implements Map.Entry { private Map map; private Object key; public MapEntry(Map map, Object key) {
From source file com.bstek.dorado.data.variant.MetaData.java
class MapEntry implements Map.Entry<String, Object> { private MetaData metaData; private String key; public MapEntry(MetaData metaData, String key) { this.metaData = metaData;
From source file Cache.java
/**
* Abstract Pair class to assist with creating correct Map Entry implementations.
*
* @author James Strachan
* @author Michael A. Smith
* @author Neil O'Toole
From source file FileBaseDataMap.java
class FileBaseDataMapEntry implements Map.Entry { private Object key = null; private Object value = null; private FileBaseDataMap fileBaseDataMap = null;