Package com.oracle.bmc.aidocument.model
Enum DocumentDetails.Source
- java.lang.Object
- 
- java.lang.Enum<DocumentDetails.Source>
- 
- com.oracle.bmc.aidocument.model.DocumentDetails.Source
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<DocumentDetails.Source>
 - Enclosing class:
- DocumentDetails
 
 public static enum DocumentDetails.Source extends Enum<DocumentDetails.Source> implements BmcEnum The location of the document data.The allowed values are: - INLINE: The data is included directly in the request payload. - OBJECT_STORAGE: The document is in OCI Object Storage. 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description InlineObjectStorage
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DocumentDetails.Sourcecreate(String key)StringgetValue()static DocumentDetails.SourcevalueOf(String name)Returns the enum constant of this type with the specified name.static DocumentDetails.Source[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Inlinepublic static final DocumentDetails.Source Inline 
 - 
ObjectStoragepublic static final DocumentDetails.Source ObjectStorage 
 
- 
 - 
Method Detail- 
valuespublic static DocumentDetails.Source[] 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 (DocumentDetails.Source c : DocumentDetails.Source.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DocumentDetails.Source 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 DocumentDetails.Source create(String key) 
 
- 
 
-