Enum FhirIO.Write.WriteMethod
- java.lang.Object
-
- java.lang.Enum<FhirIO.Write.WriteMethod>
-
- org.apache.beam.sdk.io.gcp.healthcare.FhirIO.Write.WriteMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FhirIO.Write.WriteMethod>
- Enclosing class:
- FhirIO.Write
public static enum FhirIO.Write.WriteMethod extends java.lang.Enum<FhirIO.Write.WriteMethod>
The enum Write method.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXECUTE_BUNDLEIMPORTImport Method bulk imports resources from GCS.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FhirIO.Write.WriteMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FhirIO.Write.WriteMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXECUTE_BUNDLE
public static final FhirIO.Write.WriteMethod EXECUTE_BUNDLE
-
IMPORT
public static final FhirIO.Write.WriteMethod IMPORT
-
-
Method Detail
-
values
public static FhirIO.Write.WriteMethod[] 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 (FhirIO.Write.WriteMethod c : FhirIO.Write.WriteMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FhirIO.Write.WriteMethod valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-