Enum EnumSource.Mode
- All Implemented Interfaces:
Serializable
,Comparable<EnumSource.Mode>
,java.lang.constant.Constable
- Enclosing class:
EnumSource
Enumeration of modes for selecting enum constants by name.
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum 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. -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BiPredicate
<String, Set<String>> private final EnumSource.Mode.Validator
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Mode
(EnumSource.Mode.Validator validator, BiPredicate<String, Set<String>> selector) -
Method Summary
Modifier and TypeMethodDescription(package private) boolean
(package private) void
private static void
validateNames
(EnumSource enumSource, Set<? extends Enum<?>> constants, Set<String> names) private static void
validatePatterns
(EnumSource enumSource, Set<? extends Enum<?>> constants, Set<String> names) static EnumSource.Mode
Returns the enum constant of this type with the specified name.static EnumSource.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 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:
-
-
Field Details
-
validator
-
selector
-
-
Constructor Details
-
Mode
-
-
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(EnumSource enumSource, Set<? extends Enum<?>> constants, Set<String> names) -
validatePatterns
private static void validatePatterns(EnumSource enumSource, Set<? extends Enum<?>> constants, Set<String> names)
-