Class KeyValuePair<K,V>
- java.lang.Object
-
- org.pushingpixels.radiance.component.api.common.KeyValuePair<K,V>
-
- Type Parameters:
K
- Key class.V
- Value class.
public final class KeyValuePair<K,V> extends java.lang.Object
Generic key-value pair.
-
-
Constructor Summary
Constructors Constructor Description KeyValuePair(K key, V value)
Creates a new pair.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description K
getKey()
Returns the pair key.V
getValue()
Returns the pair value.
-