Package com.zendesk.maxwell
Enum CaseSensitivity
- java.lang.Object
-
- java.lang.Enum<CaseSensitivity>
-
- com.zendesk.maxwell.CaseSensitivity
-
- All Implemented Interfaces:
Serializable
,Comparable<CaseSensitivity>
public enum CaseSensitivity extends Enum<CaseSensitivity>
Describes the 3 difference case sensitivity settings on a Mysql server. Case sensitivity rules apply to databases and tables, not columns.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CASE_SENSITIVE
CONVERT_ON_COMPARE
CONVERT_TO_LOWER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CaseSensitivity
valueOf(String name)
Returns the enum constant of this type with the specified name.static CaseSensitivity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASE_SENSITIVE
public static final CaseSensitivity CASE_SENSITIVE
-
CONVERT_TO_LOWER
public static final CaseSensitivity CONVERT_TO_LOWER
-
CONVERT_ON_COMPARE
public static final CaseSensitivity CONVERT_ON_COMPARE
-
-
Method Detail
-
values
public static CaseSensitivity[] 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 (CaseSensitivity c : CaseSensitivity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaseSensitivity 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
-
-