Enum I_ConceptAccess.ContributionChangeType
- java.lang.Object
-
- java.lang.Enum<I_ConceptAccess.ContributionChangeType>
-
- org.ehrbase.dao.access.interfaces.I_ConceptAccess.ContributionChangeType
-
- All Implemented Interfaces:
Serializable,Comparable<I_ConceptAccess.ContributionChangeType>
- Enclosing interface:
- I_ConceptAccess
public static enum I_ConceptAccess.ContributionChangeType extends Enum<I_ConceptAccess.ContributionChangeType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCode()static I_ConceptAccess.ContributionChangeTypevalueOf(String name)Returns the enum constant of this type with the specified name.static I_ConceptAccess.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 I_ConceptAccess.ContributionChangeType CREATION
-
AMENDMENT
public static final I_ConceptAccess.ContributionChangeType AMENDMENT
-
MODIFICATION
public static final I_ConceptAccess.ContributionChangeType MODIFICATION
-
SYNTHESIS
public static final I_ConceptAccess.ContributionChangeType SYNTHESIS
-
UNKNOWN
public static final I_ConceptAccess.ContributionChangeType UNKNOWN
-
DELETED
public static final I_ConceptAccess.ContributionChangeType DELETED
-
-
Method Detail
-
values
public static I_ConceptAccess.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 (I_ConceptAccess.ContributionChangeType c : I_ConceptAccess.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 I_ConceptAccess.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()
-
-