public static enum FhirIO.Import.ContentStructure extends java.lang.Enum<FhirIO.Import.ContentStructure>
Enum Constant and Description |
---|
BUNDLE
The source file contains one or more lines of newline-delimited JSON (ndjson).
|
CONTENT_STRUCTURE_UNSPECIFIED
If the content structure is not specified, the default value BUNDLE will be used.
|
RESOURCE
The source file contains one or more lines of newline-delimited JSON (ndjson).
|
Modifier and Type | Method and Description |
---|---|
static FhirIO.Import.ContentStructure |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FhirIO.Import.ContentStructure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FhirIO.Import.ContentStructure CONTENT_STRUCTURE_UNSPECIFIED
public static final FhirIO.Import.ContentStructure BUNDLE
public static final FhirIO.Import.ContentStructure RESOURCE
public static FhirIO.Import.ContentStructure[] values()
for (FhirIO.Import.ContentStructure c : FhirIO.Import.ContentStructure.values()) System.out.println(c);
public static FhirIO.Import.ContentStructure valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null