Package ca.uhn.fhir.model.dstu2.valueset
Enum TypeRestfulInteractionEnum
- java.lang.Object
-
- java.lang.Enum<TypeRestfulInteractionEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.TypeRestfulInteractionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TypeRestfulInteractionEnum>
public enum TypeRestfulInteractionEnum extends Enum<TypeRestfulInteractionEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATECode Value: createDELETECode Value: deleteHISTORY_INSTANCECode Value: history-instanceHISTORY_TYPECode Value: history-typeREADCode Value: readSEARCH_TYPECode Value: search-typeUPDATECode Value: updateVALIDATECode Value: validateVREADCode Value: vread
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<TypeRestfulInteractionEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: TypeRestfulInteraction
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TypeRestfulInteractionEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic TypeRestfulInteractionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TypeRestfulInteractionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
READ
public static final TypeRestfulInteractionEnum READ
Code Value: read
-
VREAD
public static final TypeRestfulInteractionEnum VREAD
Code Value: vread
-
UPDATE
public static final TypeRestfulInteractionEnum UPDATE
Code Value: update
-
DELETE
public static final TypeRestfulInteractionEnum DELETE
Code Value: delete
-
HISTORY_INSTANCE
public static final TypeRestfulInteractionEnum HISTORY_INSTANCE
Code Value: history-instance
-
VALIDATE
public static final TypeRestfulInteractionEnum VALIDATE
Code Value: validate
-
HISTORY_TYPE
public static final TypeRestfulInteractionEnum HISTORY_TYPE
Code Value: history-type
-
CREATE
public static final TypeRestfulInteractionEnum CREATE
Code Value: create
-
SEARCH_TYPE
public static final TypeRestfulInteractionEnum SEARCH_TYPE
Code Value: search-type
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: TypeRestfulInteraction- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<TypeRestfulInteractionEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static TypeRestfulInteractionEnum[] 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 (TypeRestfulInteractionEnum c : TypeRestfulInteractionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TypeRestfulInteractionEnum 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 static TypeRestfulInteractionEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-