Enum CitationLocation.Type
- java.lang.Object
-
- java.lang.Enum<CitationLocation.Type>
-
- software.amazon.awssdk.services.bedrockruntime.model.CitationLocation.Type
-
- All Implemented Interfaces:
Serializable,Comparable<CitationLocation.Type>
- Enclosing class:
- CitationLocation
public static enum CitationLocation.Type extends Enum<CitationLocation.Type>
- See Also:
CitationLocation.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOCUMENT_CHARDOCUMENT_CHUNKDOCUMENT_PAGEUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CitationLocation.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static CitationLocation.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENT_CHAR
public static final CitationLocation.Type DOCUMENT_CHAR
-
DOCUMENT_PAGE
public static final CitationLocation.Type DOCUMENT_PAGE
-
DOCUMENT_CHUNK
public static final CitationLocation.Type DOCUMENT_CHUNK
-
UNKNOWN_TO_SDK_VERSION
public static final CitationLocation.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static CitationLocation.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 (CitationLocation.Type c : CitationLocation.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 CitationLocation.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
-
-