Package ca.uhn.fhir.rest.api
Enum RestOperationTypeEnum
- java.lang.Object
-
- java.lang.Enum<RestOperationTypeEnum>
-
- ca.uhn.fhir.rest.api.RestOperationTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<RestOperationTypeEnum>
public enum RestOperationTypeEnum extends Enum<RestOperationTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_TAGSCREATECode Value: createDELETECode Value: deleteDELETE_TAGSEXTENDED_OPERATION_INSTANCEE.g.EXTENDED_OPERATION_SERVERE.g.EXTENDED_OPERATION_TYPEE.g.GET_PAGEGET_TAGSGRAPHQL_REQUESTUse this value with caution, this may change as the GraphQL interface maturesHISTORY_INSTANCECode Value: history-instanceHISTORY_SYSTEMCode Value: history-systemHISTORY_TYPECode Value: history-typeMETA$meta-add extended operationMETA_ADD$meta-add extended operationMETA_DELETE$meta-delete extended operationMETADATALoad the server's metadataPATCHPatch operationREADCode Value: readSEARCH_SYSTEMCode Value: search-systemSEARCH_TYPECode Value: search-typeTRANSACTIONCode Value: transactionUPDATECode Value: updateVALIDATECode Value: validateVREADCode Value: vread
-
Field Summary
Fields Modifier and Type Field Description static StringVALUESET_IDENTIFIERIdentifier for this Value Set: http://hl7.org/fhir/vs/type-restful-operationstatic StringVALUESET_NAMEName for this Value Set: RestfulOperationType
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description RestOperationTypeEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valuestatic RestOperationTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static RestOperationTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_TAGS
public static final RestOperationTypeEnum ADD_TAGS
-
DELETE_TAGS
public static final RestOperationTypeEnum DELETE_TAGS
-
GET_TAGS
public static final RestOperationTypeEnum GET_TAGS
-
GET_PAGE
public static final RestOperationTypeEnum GET_PAGE
-
GRAPHQL_REQUEST
public static final RestOperationTypeEnum GRAPHQL_REQUEST
Use this value with caution, this may change as the GraphQL interface matures
-
EXTENDED_OPERATION_SERVER
public static final RestOperationTypeEnum EXTENDED_OPERATION_SERVER
E.g. $everything, $validate, etc.
-
EXTENDED_OPERATION_TYPE
public static final RestOperationTypeEnum EXTENDED_OPERATION_TYPE
E.g. $everything, $validate, etc.
-
EXTENDED_OPERATION_INSTANCE
public static final RestOperationTypeEnum EXTENDED_OPERATION_INSTANCE
E.g. $everything, $validate, etc.
-
CREATE
public static final RestOperationTypeEnum CREATE
Code Value: create
-
DELETE
public static final RestOperationTypeEnum DELETE
Code Value: delete
-
HISTORY_INSTANCE
public static final RestOperationTypeEnum HISTORY_INSTANCE
Code Value: history-instance
-
HISTORY_SYSTEM
public static final RestOperationTypeEnum HISTORY_SYSTEM
Code Value: history-system
-
HISTORY_TYPE
public static final RestOperationTypeEnum HISTORY_TYPE
Code Value: history-type
-
READ
public static final RestOperationTypeEnum READ
Code Value: read
-
SEARCH_SYSTEM
public static final RestOperationTypeEnum SEARCH_SYSTEM
Code Value: search-system
-
SEARCH_TYPE
public static final RestOperationTypeEnum SEARCH_TYPE
Code Value: search-type
-
TRANSACTION
public static final RestOperationTypeEnum TRANSACTION
Code Value: transaction
-
UPDATE
public static final RestOperationTypeEnum UPDATE
Code Value: update
-
VALIDATE
public static final RestOperationTypeEnum VALIDATE
Code Value: validate
-
VREAD
public static final RestOperationTypeEnum VREAD
Code Value: vread
-
METADATA
public static final RestOperationTypeEnum METADATA
Load the server's metadata
-
META_ADD
public static final RestOperationTypeEnum META_ADD
$meta-add extended operation
-
META
public static final RestOperationTypeEnum META
$meta-add extended operation
-
META_DELETE
public static final RestOperationTypeEnum META_DELETE
$meta-delete extended operation
-
PATCH
public static final RestOperationTypeEnum PATCH
Patch operation
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set: http://hl7.org/fhir/vs/type-restful-operation- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: RestfulOperationType- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static RestOperationTypeEnum[] 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 (RestOperationTypeEnum c : RestOperationTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RestOperationTypeEnum 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
-
forCode
public RestOperationTypeEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-