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 and Description |
---|
Inline |
ObjectStorage |
Modifier and Type | Method and Description |
---|---|
static DocumentDetails.Source |
create(String key) |
String |
getValue() |
static DocumentDetails.Source |
valueOf(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.
|
public static final DocumentDetails.Source Inline
public static final DocumentDetails.Source ObjectStorage
public static DocumentDetails.Source[] values()
for (DocumentDetails.Source c : DocumentDetails.Source.values()) System.out.println(c);
public static DocumentDetails.Source valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static DocumentDetails.Source create(String key)
Copyright © 2016–2024. All rights reserved.