- Type Parameters:
K
- The type of the keys in the key-value pairV
- The type of the value in the key-value pair
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<KVPEntry<K,V>>
,Collection<KVPEntry<K,V>>
,List<KVPEntry<K,V>>
,RandomAccess
public class KVPArray<K,V> extends ArrayList<KVPEntry<K,V>>
Convenience class for propagating ordered KVP data to client applications. This is a wrapper for an
ArrayList
of KVPEntry
values.- See Also:
- Serialized Form
-
Field Summary
-
Constructor Summary
Constructors Constructor Description KVPArray()
-
Method Summary
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
-
Constructor Details
-
KVPArray
public KVPArray()
-