Package com.ibm.fhir.server.util
Enum FHIRRestHelper.Interaction
- java.lang.Object
-
- java.lang.Enum<FHIRRestHelper.Interaction>
-
- com.ibm.fhir.server.util.FHIRRestHelper.Interaction
-
- All Implemented Interfaces:
Serializable
,Comparable<FHIRRestHelper.Interaction>
- Enclosing class:
- FHIRRestHelper
public static enum FHIRRestHelper.Interaction extends Enum<FHIRRestHelper.Interaction>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FHIRRestHelper.Interaction
from(String value)
String
value()
static FHIRRestHelper.Interaction
valueOf(String name)
Returns the enum constant of this type with the specified name.static FHIRRestHelper.Interaction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final FHIRRestHelper.Interaction CREATE
-
DELETE
public static final FHIRRestHelper.Interaction DELETE
-
HISTORY
public static final FHIRRestHelper.Interaction HISTORY
-
PATCH
public static final FHIRRestHelper.Interaction PATCH
-
READ
public static final FHIRRestHelper.Interaction READ
-
SEARCH
public static final FHIRRestHelper.Interaction SEARCH
-
UPDATE
public static final FHIRRestHelper.Interaction UPDATE
-
VREAD
public static final FHIRRestHelper.Interaction VREAD
-
-
Method Detail
-
values
public static FHIRRestHelper.Interaction[] 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 (FHIRRestHelper.Interaction c : FHIRRestHelper.Interaction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FHIRRestHelper.Interaction 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 nameNullPointerException
- if the argument is null
-
value
public String value()
-
from
public static FHIRRestHelper.Interaction from(String value)
-
-