Enum DocumentAttributeBoostingConfiguration.Type
- java.lang.Object
-
- java.lang.Enum<DocumentAttributeBoostingConfiguration.Type>
-
- software.amazon.awssdk.services.qbusiness.model.DocumentAttributeBoostingConfiguration.Type
-
- All Implemented Interfaces:
Serializable,Comparable<DocumentAttributeBoostingConfiguration.Type>
- Enclosing class:
- DocumentAttributeBoostingConfiguration
public static enum DocumentAttributeBoostingConfiguration.Type extends Enum<DocumentAttributeBoostingConfiguration.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATE_CONFIGURATIONNUMBER_CONFIGURATIONSTRING_CONFIGURATIONSTRING_LIST_CONFIGURATIONUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentAttributeBoostingConfiguration.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static DocumentAttributeBoostingConfiguration.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUMBER_CONFIGURATION
public static final DocumentAttributeBoostingConfiguration.Type NUMBER_CONFIGURATION
-
STRING_CONFIGURATION
public static final DocumentAttributeBoostingConfiguration.Type STRING_CONFIGURATION
-
DATE_CONFIGURATION
public static final DocumentAttributeBoostingConfiguration.Type DATE_CONFIGURATION
-
STRING_LIST_CONFIGURATION
public static final DocumentAttributeBoostingConfiguration.Type STRING_LIST_CONFIGURATION
-
UNKNOWN_TO_SDK_VERSION
public static final DocumentAttributeBoostingConfiguration.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static DocumentAttributeBoostingConfiguration.Type[] 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 (DocumentAttributeBoostingConfiguration.Type c : DocumentAttributeBoostingConfiguration.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentAttributeBoostingConfiguration.Type 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
-
-