|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CollectionSize>
com.google.common.collect.testing.features.CollectionSize
public enum CollectionSize
When describing the features of the collection produced by a given generator
(i.e. in a call to FeatureSpecificTestSuiteBuilder.withFeatures(Feature...)),
this annotation specifies each of the different sizes for which a test suite
should be built. (In a typical case, the features should include ANY.) These semantics are thus a little different
from those of other Collection-related features such as CollectionFeature or SetFeature.
However, when CollectionSize.Require is used to annotate a test it
behaves normally (i.e. it requires the collection instance under test to be
a certain size for the test to run). Note that this means a test should not
require more than one CollectionSize, since a particular collection instance
can only be one size at once.
This class is GWT compatible.
| Nested Class Summary | |
|---|---|
static interface |
CollectionSize.Require
|
| Enum Constant Summary | |
|---|---|
ANY
|
|
ONE
Test a one-element collection. |
|
SEVERAL
Test a three-element collection. |
|
ZERO
Test an empty collection. |
|
| Method Summary | |
|---|---|
Set<Feature<? super Collection>> |
getImpliedFeatures()
Returns the set of features that are implied by this feature. |
int |
getNumElements()
|
static CollectionSize |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CollectionSize[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.lang.Comparable |
|---|
compareTo |
| Enum Constant Detail |
|---|
public static final CollectionSize ZERO
public static final CollectionSize ONE
public static final CollectionSize SEVERAL
public static final CollectionSize ANY
| Method Detail |
|---|
public static CollectionSize[] values()
for (CollectionSize c : CollectionSize.values()) System.out.println(c);
public static CollectionSize valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic Set<Feature<? super Collection>> getImpliedFeatures()
Feature
getImpliedFeatures in interface Feature<Collection>public int getNumElements()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||