org.javimmutable.collections
Interface JImmutableMap.Entry<K,V>

Type Parameters:
K -
V -
All Known Implementing Classes:
LeafNode, MapEntry, SingleBit32Array
Enclosing interface:
JImmutableMap<K,V>

@Immutable
public static interface JImmutableMap.Entry<K,V>

An immutable entry in the map. Contains the key and value for that entry. key must not be null but value can be null.


Method Summary
 K getKey()
           
 V getValue()
           
 

Method Detail

getKey

@Nonnull
K getKey()

getValue

V getValue()


Copyright © 2014 Burton Computer Corporation. All rights reserved.