Enum ResourceModifiedMessage.OperationTypeEnum
- java.lang.Object
-
- java.lang.Enum<ResourceModifiedMessage.OperationTypeEnum>
-
- ca.uhn.fhir.jpa.subscription.module.ResourceModifiedMessage.OperationTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceModifiedMessage.OperationTypeEnum>
- Enclosing class:
- ResourceModifiedMessage
public static enum ResourceModifiedMessage.OperationTypeEnum extends Enum<ResourceModifiedMessage.OperationTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATEDELETEMANUALLY_TRIGGEREDUPDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResourceModifiedMessage.OperationTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceModifiedMessage.OperationTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final ResourceModifiedMessage.OperationTypeEnum CREATE
-
UPDATE
public static final ResourceModifiedMessage.OperationTypeEnum UPDATE
-
DELETE
public static final ResourceModifiedMessage.OperationTypeEnum DELETE
-
MANUALLY_TRIGGERED
public static final ResourceModifiedMessage.OperationTypeEnum MANUALLY_TRIGGERED
-
-
Method Detail
-
values
public static ResourceModifiedMessage.OperationTypeEnum[] 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 (ResourceModifiedMessage.OperationTypeEnum c : ResourceModifiedMessage.OperationTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceModifiedMessage.OperationTypeEnum 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
-
-