Enum CohereChatRequest.CitationQuality
- java.lang.Object
- 
- java.lang.Enum<CohereChatRequest.CitationQuality>
- 
- com.oracle.bmc.generativeaiinference.model.CohereChatRequest.CitationQuality
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<CohereChatRequest.CitationQuality>
 - Enclosing class:
- CohereChatRequest
 
 public static enum CohereChatRequest.CitationQuality extends Enum<CohereChatRequest.CitationQuality> implements BmcEnum When FAST is selected, citations are generated at the same time as the text output and the request will be completed sooner.May result in less accurate citations. 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CohereChatRequest.CitationQualitycreate(String key)StringgetValue()static CohereChatRequest.CitationQualityvalueOf(String name)Returns the enum constant of this type with the specified name.static CohereChatRequest.CitationQuality[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Accuratepublic static final CohereChatRequest.CitationQuality Accurate 
 - 
Fastpublic static final CohereChatRequest.CitationQuality Fast 
 
- 
 - 
Method Detail- 
valuespublic static CohereChatRequest.CitationQuality[] 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 (CohereChatRequest.CitationQuality c : CohereChatRequest.CitationQuality.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CohereChatRequest.CitationQuality 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 name
- NullPointerException- if the argument is null
 
 - 
createpublic static CohereChatRequest.CitationQuality create(String key) 
 
- 
 
-