Enum CartesianTest.Enum.Mode
- All Implemented Interfaces:
Serializable, Comparable<CartesianTest.Enum.Mode>
- Enclosing class:
CartesianTest.Enum
Enumeration of modes for selecting enum constants by name.
- Since:
- 1.5.0
-
Nested Class Summary
Nested Classes -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSelect all declared enum constants except those supplied via theCartesianTest.Enum.names()attribute.Select only those enum constants whose names are supplied via theCartesianTest.Enum.names()attribute.Select only those enum constants whose names match all patterns supplied via theCartesianTest.Enum.names()attribute.Select only those enum constants whose names match any pattern supplied via theCartesianTest.Enum.names()attribute. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BiPredicate<String, Set<String>> private final CartesianTest.Enum.Mode.Validator -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateMode(CartesianTest.Enum.Mode.Validator validator, BiPredicate<String, Set<String>> selector) -
Method Summary
Modifier and TypeMethodDescription(package private) boolean(package private) voidprivate static voidvalidateNames(CartesianTest.Enum enumSource, Set<? extends Enum<?>> constants, Set<String> names) private static voidvalidatePatterns(CartesianTest.Enum enumSource, Set<? extends Enum<?>> constants, Set<String> names) static CartesianTest.Enum.ModeReturns the enum constant of this type with the specified name.static CartesianTest.Enum.Mode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INCLUDE
Select only those enum constants whose names are supplied via theCartesianTest.Enum.names()attribute. -
EXCLUDE
Select all declared enum constants except those supplied via theCartesianTest.Enum.names()attribute. -
MATCH_ALL
Select only those enum constants whose names match all patterns supplied via theCartesianTest.Enum.names()attribute.- See Also:
-
MATCH_ANY
Select only those enum constants whose names match any pattern supplied via theCartesianTest.Enum.names()attribute.- See Also:
-
-
Field Details
-
validator
-
selector
-
-
Constructor Details
-
Mode
private Mode(CartesianTest.Enum.Mode.Validator validator, BiPredicate<String, Set<String>> selector)
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
validate
-
select
-
validateNames
private static void validateNames(CartesianTest.Enum enumSource, Set<? extends Enum<?>> constants, Set<String> names) -
validatePatterns
private static void validatePatterns(CartesianTest.Enum enumSource, Set<? extends Enum<?>> constants, Set<String> names)
-