OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:constrainedcollection
(Results
1 - 2
of
2
) sorted by null
/external/guava/guava/src/com/google/common/collect/
Constraints.java
80
public static <E> Collection<E>
constrainedCollection
(
82
return new
ConstrainedCollection
<E>(collection, constraint);
85
/** @see Constraints#
constrainedCollection
*/
86
static class
ConstrainedCollection
<E> extends ForwardingCollection<E> {
90
public
ConstrainedCollection
(
315
return
constrainedCollection
(collection, constraint);
/external/guava/guava-tests/test/com/google/common/collect/
ConstraintsTest.java
77
Collection<String> constrained = Constraints.
constrainedCollection
(
89
Collection<String> constrained = Constraints.
constrainedCollection
(
Completed in 703 milliseconds