Uses of Interface
com.google.common.collect.Constraint

Uses of Constraint in com.google.common.collect
 

Methods in com.google.common.collect that return Constraint
static
<E> Constraint<E>
Constraints.notNull()
          Returns a constraint that verifies that the element is not null.
 

Methods in com.google.common.collect with parameters of type Constraint
static
<E> java.util.Collection<E>
Constraints.constrainedCollection(java.util.Collection<E> collection, Constraint<? super E> constraint)
          Returns a constrained view of the specified collection, using the specified constraint.
static
<E> java.util.List<E>
Constraints.constrainedList(java.util.List<E> list, Constraint<? super E> constraint)
          Returns a constrained view of the specified list, using the specified constraint.
static
<E> Multiset<E>
Constraints.constrainedMultiset(Multiset<E> multiset, Constraint<? super E> constraint)
          Returns a constrained view of the specified multiset, using the specified constraint.
static
<E> java.util.Set<E>
Constraints.constrainedSet(java.util.Set<E> set, Constraint<? super E> constraint)
          Returns a constrained view of the specified set, using the specified constraint.
static
<E> java.util.SortedSet<E>
Constraints.constrainedSortedSet(java.util.SortedSet<E> sortedSet, Constraint<? super E> constraint)
          Returns a constrained view of the specified sorted set, using the specified constraint.
 



Copyright © 2010 Google. All Rights Reserved.