edu.mit.jverbnet.util
Interface Checks.IReallocationStrategy

Enclosing class:
Checks

public static interface Checks.IReallocationStrategy

A reallocation strategy defines if and how a collection should be reallocated.

Since:
JVerbnet 1.0.0
Version:
1.0.0
Author:
Mark A. Finlayson

Method Summary
<T> List<T>
reallocate(List<T> list)
           
<K,V> Map<K,V>
reallocate(Map<K,V> map)
           
<T> Set<T>
reallocate(Set<T> set)
           
<K,V> SortedMap<K,V>
reallocate(SortedMap<K,V> map)
           
<T> SortedSet<T>
reallocate(SortedSet<T> set)
           
 

Method Detail

reallocate

<T> List<T> reallocate(List<T> list)

reallocate

<T> Set<T> reallocate(Set<T> set)

reallocate

<T> SortedSet<T> reallocate(SortedSet<T> set)

reallocate

<K,V> Map<K,V> reallocate(Map<K,V> map)

reallocate

<K,V> SortedMap<K,V> reallocate(SortedMap<K,V> map)


Copyright © 2012 Massachusetts Institute of Technology. All Rights Reserved.