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

Packages that use Constraint
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

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> Collection<E>
Constraints.constrainedCollection(Collection<E> collection, Constraint<? super E> constraint)
          Returns a constrained view of the specified collection, using the specified constraint.
static
<E> List<E>
Constraints.constrainedList(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> Set<E>
Constraints.constrainedSet(Set<E> set, Constraint<? super E> constraint)
          Returns a constrained view of the specified set, using the specified constraint.
static
<E> SortedSet<E>
Constraints.constrainedSortedSet(SortedSet<E> sortedSet, Constraint<? super E> constraint)
          Returns a constrained view of the specified sorted set, using the specified constraint.
 



Copyright © 2010-2012. All Rights Reserved.