Enum CaseResolver.FederationSDKCasingMode
- java.lang.Object
-
- java.lang.Enum<CaseResolver.FederationSDKCasingMode>
-
- com.amazonaws.athena.connector.lambda.resolver.CaseResolver.FederationSDKCasingMode
-
- All Implemented Interfaces:
Serializable
,Comparable<CaseResolver.FederationSDKCasingMode>
- Enclosing class:
- CaseResolver
public static enum CaseResolver.FederationSDKCasingMode extends Enum<CaseResolver.FederationSDKCasingMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATION
CASE_INSENSITIVE_SEARCH
LOWER
NONE
UPPER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CaseResolver.FederationSDKCasingMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static CaseResolver.FederationSDKCasingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final CaseResolver.FederationSDKCasingMode NONE
-
LOWER
public static final CaseResolver.FederationSDKCasingMode LOWER
-
UPPER
public static final CaseResolver.FederationSDKCasingMode UPPER
-
CASE_INSENSITIVE_SEARCH
public static final CaseResolver.FederationSDKCasingMode CASE_INSENSITIVE_SEARCH
-
ANNOTATION
public static final CaseResolver.FederationSDKCasingMode ANNOTATION
-
-
Method Detail
-
values
public static CaseResolver.FederationSDKCasingMode[] 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 (CaseResolver.FederationSDKCasingMode c : CaseResolver.FederationSDKCasingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaseResolver.FederationSDKCasingMode 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
-
-