|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Checks.IReallocationStrategy | |
---|---|
edu.mit.jverbnet.util | Provides utility classes |
Uses of Checks.IReallocationStrategy in edu.mit.jverbnet.util |
---|
Fields in edu.mit.jverbnet.util declared as Checks.IReallocationStrategy | |
---|---|
static Checks.IReallocationStrategy |
Checks.DoNotReallocate
A reallocation strategy that does nothing. |
static Checks.IReallocationStrategy |
Checks.ModifiableLeaveNulls
Reallocates collections as modifiable collections. |
static Checks.IReallocationStrategy |
Checks.ModifiableMaskNullWithEmpty
Reallocates collections as modifiable collections. |
static Checks.IReallocationStrategy |
Checks.UnmodifiableLeaveNulls
Reallocates collections as unmodifiable collections. |
static Checks.IReallocationStrategy |
Checks.UnmodifiableMaskNullWithEmpty
Reallocates collections as unmodifiable collections. |
Methods in edu.mit.jverbnet.util with parameters of type Checks.IReallocationStrategy | ||
---|---|---|
static
|
Checks.allElementsAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.List<E> list,
Checks.IReallocationStrategy r)
Runs the check object over all elements in the list. |
|
static
|
Checks.allElementsAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.Set<E> set,
Checks.IReallocationStrategy r)
Runs the check object over all elements in the set. |
|
static
|
Checks.allElementsAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.SortedSet<E> set,
Checks.IReallocationStrategy r)
Runs the check object over all elements in the set. |
|
static
|
Checks.allKeysAndValuesAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.Map<K,V> map,
Checks.IReallocationStrategy r)
Runs the check object over all keys and values in the map. |
|
static
|
Checks.allKeysAndValuesAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.SortedMap<K,V> map,
Checks.IReallocationStrategy r)
Runs the check object over all keys and values in the map. |
|
static
|
Checks.allKeysAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.Map<K,V> map,
Checks.IReallocationStrategy r)
Runs the check object over all keys in the map. |
|
static
|
Checks.allKeysAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.SortedMap<K,V> map,
Checks.IReallocationStrategy r)
Runs the check object over all keys in the map. |
|
static
|
Checks.allValuesAre(Checks.ICheck<S> test,
java.lang.String varName,
java.util.Map<K,V> map,
Checks.IReallocationStrategy r)
Runs the check object over all values in the map. |
|
static
|
Checks.allValuesAre(Checks.ICheck<V> test,
java.lang.String varName,
java.util.SortedMap<K,V> map,
Checks.IReallocationStrategy r)
Runs the check object over all values in the map. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |