Package org.ehrbase.dao.access.jooq
Enum SystemValue
- java.lang.Object
-
- java.lang.Enum<SystemValue>
-
- org.ehrbase.dao.access.jooq.SystemValue
-
- All Implemented Interfaces:
Serializable,Comparable<SystemValue>
public enum SystemValue extends Enum<SystemValue>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATEGORYCHARSETCOMPOSERCONTEXTENCODINGFEEDER_AUDITLANGUAGELINKSMEASUREMENT_SERVICENAMEPROVIDERRM_VERSIONSUBJECTTERMINOLOGY_SERVICETERRITORYUID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SystemValuefromId(String id)Return system value with matching idStringid()Id of this system valuestatic SystemValuevalueOf(String name)Returns the enum constant of this type with the specified name.static SystemValue[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LANGUAGE
public static final SystemValue LANGUAGE
-
CHARSET
public static final SystemValue CHARSET
-
ENCODING
public static final SystemValue ENCODING
-
TERMINOLOGY_SERVICE
public static final SystemValue TERMINOLOGY_SERVICE
-
MEASUREMENT_SERVICE
public static final SystemValue MEASUREMENT_SERVICE
-
SUBJECT
public static final SystemValue SUBJECT
-
PROVIDER
public static final SystemValue PROVIDER
-
COMPOSER
public static final SystemValue COMPOSER
-
TERRITORY
public static final SystemValue TERRITORY
-
CONTEXT
public static final SystemValue CONTEXT
-
CATEGORY
public static final SystemValue CATEGORY
-
NAME
public static final SystemValue NAME
-
RM_VERSION
public static final SystemValue RM_VERSION
-
UID
public static final SystemValue UID
-
FEEDER_AUDIT
public static final SystemValue FEEDER_AUDIT
-
LINKS
public static final SystemValue LINKS
-
-
Method Detail
-
values
public static SystemValue[] 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 (SystemValue c : SystemValue.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemValue 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
-
id
public String id()
Id of this system value- Returns:
- id
-
fromId
public static SystemValue fromId(String id)
Return system value with matching id- Parameters:
id-- Returns:
- null if not found
-
-