public enum RestfulInteraction extends Enum<RestfulInteraction>
| Enum Constant and Description |
|---|
BATCH
perform a set of a separate interactions in a single http operation
|
CAPABILITIES
Get a Capability Statement for the system.
|
CREATE
Create a new resource with a server assigned id.
|
DELETE
Delete a resource.
|
HISTORY
Retrieve the change history for a particular resource, type of resource, or the entire system.
|
HISTORYINSTANCE
Retrieve the change history for a particular resource.
|
HISTORYSYSTEM
Retrieve the change history for all resources on a system.
|
HISTORYTYPE
Retrieve the change history for all resources of a particular type.
|
NULL
added to help the parsers
|
OPERATION
Perform an operation as defined by an OperationDefinition.
|
PATCH
Update an existing resource by posting a set of changes to it.
|
READ
Read the current state of the resource.
|
SEARCH
Search a resource type or all resources based on some filter criteria.
|
SEARCHSYSTEM
Search all resources based on some filter criteria.
|
SEARCHTYPE
Search all resources of the specified type based on some filter criteria.
|
TRANSACTION
Update, create or delete a set of resources as a single transaction.
|
UPDATE
Update an existing resource by its id (or create it if it is new).
|
VREAD
Read the state of a specific version of the resource.
|
| Modifier and Type | Method and Description |
|---|---|
static RestfulInteraction |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static RestfulInteraction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestfulInteraction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestfulInteraction READ
public static final RestfulInteraction VREAD
public static final RestfulInteraction UPDATE
public static final RestfulInteraction PATCH
public static final RestfulInteraction DELETE
public static final RestfulInteraction HISTORY
public static final RestfulInteraction HISTORYINSTANCE
public static final RestfulInteraction HISTORYTYPE
public static final RestfulInteraction HISTORYSYSTEM
public static final RestfulInteraction CREATE
public static final RestfulInteraction SEARCH
public static final RestfulInteraction SEARCHTYPE
public static final RestfulInteraction SEARCHSYSTEM
public static final RestfulInteraction CAPABILITIES
public static final RestfulInteraction TRANSACTION
public static final RestfulInteraction BATCH
public static final RestfulInteraction OPERATION
public static final RestfulInteraction NULL
public static RestfulInteraction[] values()
for (RestfulInteraction c : RestfulInteraction.values()) System.out.println(c);
public static RestfulInteraction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static RestfulInteraction fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.