Module org.junit.jupiter.params
Enum Class EnumSource.Mode
- All Implemented Interfaces:
Serializable
,Comparable<EnumSource.Mode>
,Constable
- Enclosing class:
EnumSource
Enumeration of modes for selecting enum constants by name.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSelect all declared enum constants except those supplied via theEnumSource.names()
attribute.Select only those enum constants whose names are supplied via theEnumSource.names()
attribute.Select only those enum constants whose names match all patterns supplied via theEnumSource.names()
attribute.Select only those enum constants whose names match any pattern supplied via theEnumSource.names()
attribute.Select only those enum constants whose names match none of the patterns supplied via theEnumSource.names()
attribute. -
Method Summary
Modifier and TypeMethodDescriptionstatic EnumSource.Mode
Returns the enum constant of this class with the specified name.static EnumSource.Mode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INCLUDE
Select only those enum constants whose names are supplied via theEnumSource.names()
attribute. -
EXCLUDE
Select all declared enum constants except those supplied via theEnumSource.names()
attribute. -
MATCH_ALL
Select only those enum constants whose names match all patterns supplied via theEnumSource.names()
attribute.- See Also:
-
MATCH_ANY
Select only those enum constants whose names match any pattern supplied via theEnumSource.names()
attribute.- See Also:
-
MATCH_NONE
Select only those enum constants whose names match none of the patterns supplied via theEnumSource.names()
attribute.- Since:
- 5.9
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-