public static enum HealthNamespace.CategoryScheme extends java.lang.Enum<HealthNamespace.CategoryScheme>
Enum Constant and Description |
---|
ccr
CCR scheme identifies the category of all CCR-categories or subsections.
|
code
Code scheme identifies CCR codes.
|
item
Item scheme identifies the category of all health-items.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getIri()
Returns the IRI which identifies this categorization scheme.
|
static HealthNamespace.CategoryScheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HealthNamespace.CategoryScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HealthNamespace.CategoryScheme ccr
public static final HealthNamespace.CategoryScheme item
public static final HealthNamespace.CategoryScheme code
public static HealthNamespace.CategoryScheme[] values()
for (HealthNamespace.CategoryScheme c : HealthNamespace.CategoryScheme.values()) System.out.println(c);
public static HealthNamespace.CategoryScheme valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getIri()