Enum FhirApiName
- java.lang.Object
-
- java.lang.Enum<FhirApiName>
-
- org.apache.camel.component.fhir.internal.FhirApiName
-
- All Implemented Interfaces:
Serializable
,Comparable<FhirApiName>
,org.apache.camel.support.component.ApiName
public enum FhirApiName extends Enum<FhirApiName> implements org.apache.camel.support.component.ApiName
CamelApiName
Enumeration for Component Fhir
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
static FhirApiName
valueOf(String name)
Returns the enum constant of this type with the specified name.static FhirApiName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAPABILITIES
public static final FhirApiName CAPABILITIES
-
CREATE
public static final FhirApiName CREATE
-
DELETE
public static final FhirApiName DELETE
-
HISTORY
public static final FhirApiName HISTORY
-
LOAD_PAGE
public static final FhirApiName LOAD_PAGE
-
META
public static final FhirApiName META
-
OPERATION
public static final FhirApiName OPERATION
-
PATCH
public static final FhirApiName PATCH
-
READ
public static final FhirApiName READ
-
SEARCH
public static final FhirApiName SEARCH
-
TRANSACTION
public static final FhirApiName TRANSACTION
-
UPDATE
public static final FhirApiName UPDATE
-
VALIDATE
public static final FhirApiName VALIDATE
-
-
Method Detail
-
values
public static FhirApiName[] 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 (FhirApiName c : FhirApiName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FhirApiName 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
-
getName
public String getName()
- Specified by:
getName
in interfaceorg.apache.camel.support.component.ApiName
-
-