Package org.hl7.fhir.r4b.model
Enum CapabilityStatement.TypeRestfulInteraction
- java.lang.Object
-
- java.lang.Enum<CapabilityStatement.TypeRestfulInteraction>
-
- org.hl7.fhir.r4b.model.CapabilityStatement.TypeRestfulInteraction
-
- All Implemented Interfaces:
Serializable,Comparable<CapabilityStatement.TypeRestfulInteraction>
- Enclosing class:
- CapabilityStatement
public static enum CapabilityStatement.TypeRestfulInteraction extends Enum<CapabilityStatement.TypeRestfulInteraction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATECreate a new resource with a server assigned id.DELETEDelete a resource.HISTORYINSTANCERetrieve the change history for a particular resource.HISTORYTYPERetrieve the change history for all resources of a particular type.NULLadded to help the parsers with the generic typesPATCHUpdate an existing resource by posting a set of changes to it.READRead the current state of the resource.SEARCHTYPESearch all resources of the specified type based on some filter criteria.UPDATEUpdate an existing resource by its id (or create it if it is new).VREADRead the state of a specific version of the resource.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CapabilityStatement.TypeRestfulInteractionfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static CapabilityStatement.TypeRestfulInteractionvalueOf(String name)Returns the enum constant of this type with the specified name.static CapabilityStatement.TypeRestfulInteraction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final CapabilityStatement.TypeRestfulInteraction READ
Read the current state of the resource.
-
VREAD
public static final CapabilityStatement.TypeRestfulInteraction VREAD
Read the state of a specific version of the resource.
-
UPDATE
public static final CapabilityStatement.TypeRestfulInteraction UPDATE
Update an existing resource by its id (or create it if it is new).
-
PATCH
public static final CapabilityStatement.TypeRestfulInteraction PATCH
Update an existing resource by posting a set of changes to it.
-
DELETE
public static final CapabilityStatement.TypeRestfulInteraction DELETE
Delete a resource.
-
HISTORYINSTANCE
public static final CapabilityStatement.TypeRestfulInteraction HISTORYINSTANCE
Retrieve the change history for a particular resource.
-
HISTORYTYPE
public static final CapabilityStatement.TypeRestfulInteraction HISTORYTYPE
Retrieve the change history for all resources of a particular type.
-
CREATE
public static final CapabilityStatement.TypeRestfulInteraction CREATE
Create a new resource with a server assigned id.
-
SEARCHTYPE
public static final CapabilityStatement.TypeRestfulInteraction SEARCHTYPE
Search all resources of the specified type based on some filter criteria.
-
NULL
public static final CapabilityStatement.TypeRestfulInteraction NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static CapabilityStatement.TypeRestfulInteraction[] 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 (CapabilityStatement.TypeRestfulInteraction c : CapabilityStatement.TypeRestfulInteraction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CapabilityStatement.TypeRestfulInteraction 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
-
fromCode
public static CapabilityStatement.TypeRestfulInteraction fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-