Package org.ehrbase.client.openehrclient
Enum ContributionChangeType
- java.lang.Object
-
- java.lang.Enum<ContributionChangeType>
-
- org.ehrbase.client.openehrclient.ContributionChangeType
-
- All Implemented Interfaces:
Serializable,Comparable<ContributionChangeType>
public enum ContributionChangeType extends Enum<ContributionChangeType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCode()StringgetName()static ContributionChangeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ContributionChangeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATION
public static final ContributionChangeType CREATION
-
AMENDMENT
public static final ContributionChangeType AMENDMENT
-
MODIFICATION
public static final ContributionChangeType MODIFICATION
-
SYNTHESIS
public static final ContributionChangeType SYNTHESIS
-
UNKNOWN
public static final ContributionChangeType UNKNOWN
-
DELETED
public static final ContributionChangeType DELETED
-
-
Method Detail
-
values
public static ContributionChangeType[] 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 (ContributionChangeType c : ContributionChangeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContributionChangeType 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
-
getCode
public int getCode()
-
getName
public String getName()
-
-