Searched defs:implied (Results 1 - 5 of 5) sorted by relevance

/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DCollectionSize.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
69 private final Set<Feature<? super Collection>> implied; field in class:CollectionSize
73 this.implied = Collections.emptySet();
77 CollectionSize(Feature<? super Collection> ... implied) { argument
80 this.implied = Helpers.copyToSet(implied);
86 return implied;
H A DListFeature.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
56 private final Set<Feature<? super List>> implied; field in class:ListFeature
58 ListFeature(Feature<? super List> ... implied) { argument
59 this.implied = Helpers.copyToSet(implied);
64 return implied;
H A DSetFeature.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
40 private final Set<Feature<? super Set>> implied; field in class:SetFeature
42 SetFeature(Feature<? super Set> ... implied) { argument
43 this.implied = Helpers.copyToSet(implied);
48 return implied;
H A DCollectionFeature.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
116 private final Set<Feature<? super Collection>> implied; field in class:CollectionFeature
118 CollectionFeature(Feature<? super Collection> ... implied) { argument
119 this.implied = Helpers.copyToSet(implied);
124 return implied;
H A DMapFeature.java12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
70 private final Set<Feature<? super Map>> implied; field in class:MapFeature
72 MapFeature(Feature<? super Map> ... implied) { argument
73 this.implied = Helpers.copyToSet(implied);
78 return implied;

Completed in 56 milliseconds