Enum ComplexExpressionPushdownSubType
- java.lang.Object
-
- java.lang.Enum<ComplexExpressionPushdownSubType>
-
- com.amazonaws.athena.connector.lambda.metadata.optimizations.pushdown.ComplexExpressionPushdownSubType
-
- All Implemented Interfaces:
PushdownSubTypes,Serializable,Comparable<ComplexExpressionPushdownSubType>
public enum ComplexExpressionPushdownSubType extends Enum<ComplexExpressionPushdownSubType> implements PushdownSubTypes
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classComplexExpressionPushdownSubType.SubTypeProperties
-
Enum Constant Summary
Enum Constants Enum Constant Description SUPPORTED_FUNCTION_EXPRESSION_TYPES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSubType()static ComplexExpressionPushdownSubTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ComplexExpressionPushdownSubType[]values()Returns an array containing the constants of this enum type, in the order they are declared.ComplexExpressionPushdownSubType.SubTypePropertieswithSubTypeProperties(String... ignored)-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface com.amazonaws.athena.connector.lambda.metadata.optimizations.pushdown.PushdownSubTypes
getProperties
-
-
-
-
Enum Constant Detail
-
SUPPORTED_FUNCTION_EXPRESSION_TYPES
public static final ComplexExpressionPushdownSubType SUPPORTED_FUNCTION_EXPRESSION_TYPES
-
-
Method Detail
-
values
public static ComplexExpressionPushdownSubType[] 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 (ComplexExpressionPushdownSubType c : ComplexExpressionPushdownSubType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComplexExpressionPushdownSubType 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
-
getSubType
public String getSubType()
- Specified by:
getSubTypein interfacePushdownSubTypes
-
withSubTypeProperties
public ComplexExpressionPushdownSubType.SubTypeProperties withSubTypeProperties(String... ignored)
-
-