Package cdc.rdb
Enum RdbIdentifierNormalizer.Style
- java.lang.Object
-
- java.lang.Enum<RdbIdentifierNormalizer.Style>
-
- cdc.rdb.RdbIdentifierNormalizer.Style
-
- All Implemented Interfaces:
Serializable,Comparable<RdbIdentifierNormalizer.Style>
- Enclosing class:
- RdbIdentifierNormalizer
public static enum RdbIdentifierNormalizer.Style extends Enum<RdbIdentifierNormalizer.Style>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOWER_CASEMIXED_CASEUPPER_CASE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RdbIdentifierNormalizer.StylevalueOf(String name)Returns the enum constant of this type with the specified name.static RdbIdentifierNormalizer.Style[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOWER_CASE
public static final RdbIdentifierNormalizer.Style LOWER_CASE
-
MIXED_CASE
public static final RdbIdentifierNormalizer.Style MIXED_CASE
-
UPPER_CASE
public static final RdbIdentifierNormalizer.Style UPPER_CASE
-
-
Method Detail
-
values
public static RdbIdentifierNormalizer.Style[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RdbIdentifierNormalizer.Style c : RdbIdentifierNormalizer.Style.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RdbIdentifierNormalizer.Style valueOf(String name)
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
-
-