- All Implemented Interfaces:
Serializable,Comparable<MatcherTransformType>,Constable
Java class for MatcherTransformType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MatcherTransformType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="AS_IS"/>
<enumeration value="LOWER"/>
<enumeration value="LOWER_FIRST_LETTER"/>
<enumeration value="UPPER"/>
<enumeration value="UPPER_FIRST_LETTER"/>
<enumeration value="CAMEL"/>
<enumeration value="PASCAL"/>
</restriction>
</simpleType>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAMatcherRuleshould not transform identifiers, but output them "as is" (as the input is).AMatcherRuleshould transform identifiers to camelCase.AMatcherRuleshould transform identifiers to lower case.AMatcherRuleshould transform the first letters of identifiers to lower case.AMatcherRuleshould transform identifiers to PascalCase.AMatcherRuleshould transform identifiers to UPPER case.AMatcherRuleshould transform the first letters of identifiers to UPPER case. -
Method Summary
Modifier and TypeMethodDescriptionstatic MatcherTransformTypevalue()static MatcherTransformTypeReturns the enum constant of this class with the specified name.static MatcherTransformType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AS_IS
AMatcherRuleshould not transform identifiers, but output them "as is" (as the input is). -
LOWER
AMatcherRuleshould transform identifiers to lower case. -
LOWER_FIRST_LETTER
AMatcherRuleshould transform the first letters of identifiers to lower case. -
UPPER
AMatcherRuleshould transform identifiers to UPPER case. -
UPPER_FIRST_LETTER
AMatcherRuleshould transform the first letters of identifiers to UPPER case. -
CAMEL
AMatcherRuleshould transform identifiers to camelCase. -
PASCAL
AMatcherRuleshould transform identifiers to PascalCase.
-
-
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
-
value
-
fromValue
-