Enum RetrievalFilter.Type
- java.lang.Object
-
- java.lang.Enum<RetrievalFilter.Type>
-
- software.amazon.awssdk.services.bedrockagentruntime.model.RetrievalFilter.Type
-
- All Implemented Interfaces:
Serializable,Comparable<RetrievalFilter.Type>
- Enclosing class:
- RetrievalFilter
public static enum RetrievalFilter.Type extends Enum<RetrievalFilter.Type>
- See Also:
RetrievalFilter.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AND_ALLEQUALSGREATER_THANGREATER_THAN_OR_EQUALSINLESS_THANLESS_THAN_OR_EQUALSLIST_CONTAINSNOT_EQUALSNOT_INOR_ALLSTARTS_WITHSTRING_CONTAINSUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RetrievalFilter.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static RetrievalFilter.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AND_ALL
public static final RetrievalFilter.Type AND_ALL
-
EQUALS
public static final RetrievalFilter.Type EQUALS
-
GREATER_THAN
public static final RetrievalFilter.Type GREATER_THAN
-
GREATER_THAN_OR_EQUALS
public static final RetrievalFilter.Type GREATER_THAN_OR_EQUALS
-
IN
public static final RetrievalFilter.Type IN
-
LESS_THAN
public static final RetrievalFilter.Type LESS_THAN
-
LESS_THAN_OR_EQUALS
public static final RetrievalFilter.Type LESS_THAN_OR_EQUALS
-
LIST_CONTAINS
public static final RetrievalFilter.Type LIST_CONTAINS
-
NOT_EQUALS
public static final RetrievalFilter.Type NOT_EQUALS
-
NOT_IN
public static final RetrievalFilter.Type NOT_IN
-
OR_ALL
public static final RetrievalFilter.Type OR_ALL
-
STARTS_WITH
public static final RetrievalFilter.Type STARTS_WITH
-
STRING_CONTAINS
public static final RetrievalFilter.Type STRING_CONTAINS
-
UNKNOWN_TO_SDK_VERSION
public static final RetrievalFilter.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static RetrievalFilter.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 (RetrievalFilter.Type c : RetrievalFilter.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 RetrievalFilter.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
-
-