public enum MatcherTransformType extends Enum<MatcherTransformType>
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>
| Enum Constant and Description |
|---|
AS_IS |
CAMEL |
LOWER |
LOWER_FIRST_LETTER |
PASCAL |
UPPER |
UPPER_FIRST_LETTER |
| Modifier and Type | Method and Description |
|---|---|
static MatcherTransformType |
fromValue(String v) |
String |
value() |
static MatcherTransformType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatcherTransformType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatcherTransformType AS_IS
public static final MatcherTransformType LOWER
public static final MatcherTransformType LOWER_FIRST_LETTER
public static final MatcherTransformType UPPER
public static final MatcherTransformType UPPER_FIRST_LETTER
public static final MatcherTransformType CAMEL
public static final MatcherTransformType PASCAL
public static MatcherTransformType[] values()
for (MatcherTransformType c : MatcherTransformType.values()) System.out.println(c);
public static MatcherTransformType 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 nullpublic String value()
public static MatcherTransformType fromValue(String v)
Copyright © 2021. All rights reserved.