Enum ResourceEraseRecord.Status
- java.lang.Object
-
- java.lang.Enum<ResourceEraseRecord.Status>
-
- org.linuxforhealth.fhir.persistence.ResourceEraseRecord.Status
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ResourceEraseRecord.Status>
- Enclosing class:
- ResourceEraseRecord
public static enum ResourceEraseRecord.Status extends java.lang.Enum<ResourceEraseRecord.Status>
The outcome status for the Resource Erase operation
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DONE
NOT_FOUND
NOT_SUPPORTED_GREATER
NOT_SUPPORTED_LATEST
PARTIAL
VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceEraseRecord.Status
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResourceEraseRecord.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_FOUND
public static final ResourceEraseRecord.Status NOT_FOUND
-
PARTIAL
public static final ResourceEraseRecord.Status PARTIAL
-
DONE
public static final ResourceEraseRecord.Status DONE
-
VERSION
public static final ResourceEraseRecord.Status VERSION
-
NOT_SUPPORTED_LATEST
public static final ResourceEraseRecord.Status NOT_SUPPORTED_LATEST
-
NOT_SUPPORTED_GREATER
public static final ResourceEraseRecord.Status NOT_SUPPORTED_GREATER
-
-
Method Detail
-
values
public static ResourceEraseRecord.Status[] 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 (ResourceEraseRecord.Status c : ResourceEraseRecord.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceEraseRecord.Status 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
-
-