public static enum TypeMatchingRuleSet.CharacterRule extends Enum<TypeMatchingRuleSet.CharacterRule>
Enum Constant and Description |
---|
ConsiderCase |
ConsiderSpaces |
ConsiderSpecial |
IgnoreCase |
IgnoreSpaces |
IgnoreSpecial |
NoCharacterRule |
Modifier and Type | Method and Description |
---|---|
static TypeMatchingRuleSet.CharacterRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeMatchingRuleSet.CharacterRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeMatchingRuleSet.CharacterRule IgnoreCase
public static final TypeMatchingRuleSet.CharacterRule ConsiderCase
public static final TypeMatchingRuleSet.CharacterRule IgnoreSpaces
public static final TypeMatchingRuleSet.CharacterRule ConsiderSpaces
public static final TypeMatchingRuleSet.CharacterRule IgnoreSpecial
public static final TypeMatchingRuleSet.CharacterRule ConsiderSpecial
public static final TypeMatchingRuleSet.CharacterRule NoCharacterRule
public static TypeMatchingRuleSet.CharacterRule[] values()
for (TypeMatchingRuleSet.CharacterRule c : TypeMatchingRuleSet.CharacterRule.values()) System.out.println(c);
public static TypeMatchingRuleSet.CharacterRule valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null