Enum TextTransformationType
- java.lang.Object
-
- java.lang.Enum<TextTransformationType>
-
- software.amazon.awssdk.services.wafv2.model.TextTransformationType
-
- All Implemented Interfaces:
Serializable,Comparable<TextTransformationType>
@Generated("software.amazon.awssdk:codegen") public enum TextTransformationType extends Enum<TextTransformationType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TextTransformationTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<TextTransformationType>knownValues()StringtoString()static TextTransformationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TextTransformationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final TextTransformationType NONE
-
COMPRESS_WHITE_SPACE
public static final TextTransformationType COMPRESS_WHITE_SPACE
-
HTML_ENTITY_DECODE
public static final TextTransformationType HTML_ENTITY_DECODE
-
LOWERCASE
public static final TextTransformationType LOWERCASE
-
CMD_LINE
public static final TextTransformationType CMD_LINE
-
URL_DECODE
public static final TextTransformationType URL_DECODE
-
BASE64_DECODE
public static final TextTransformationType BASE64_DECODE
-
HEX_DECODE
public static final TextTransformationType HEX_DECODE
-
MD5
public static final TextTransformationType MD5
-
REPLACE_COMMENTS
public static final TextTransformationType REPLACE_COMMENTS
-
ESCAPE_SEQ_DECODE
public static final TextTransformationType ESCAPE_SEQ_DECODE
-
SQL_HEX_DECODE
public static final TextTransformationType SQL_HEX_DECODE
-
CSS_DECODE
public static final TextTransformationType CSS_DECODE
-
JS_DECODE
public static final TextTransformationType JS_DECODE
-
NORMALIZE_PATH
public static final TextTransformationType NORMALIZE_PATH
-
NORMALIZE_PATH_WIN
public static final TextTransformationType NORMALIZE_PATH_WIN
-
REMOVE_NULLS
public static final TextTransformationType REMOVE_NULLS
-
REPLACE_NULLS
public static final TextTransformationType REPLACE_NULLS
-
BASE64_DECODE_EXT
public static final TextTransformationType BASE64_DECODE_EXT
-
URL_DECODE_UNI
public static final TextTransformationType URL_DECODE_UNI
-
UTF8_TO_UNICODE
public static final TextTransformationType UTF8_TO_UNICODE
-
UNKNOWN_TO_SDK_VERSION
public static final TextTransformationType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static TextTransformationType[] 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 (TextTransformationType c : TextTransformationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TextTransformationType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<TextTransformationType>
-
fromValue
public static TextTransformationType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- TextTransformationType corresponding to the value
-
knownValues
public static Set<TextTransformationType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownTextTransformationTypes
-
-