public enum CareLevel extends Enum<CareLevel>
Java class for CareLevel.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CareLevel">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CARE_LEVEL_1"/>
<enumeration value="CARE_LEVEL_2"/>
<enumeration value="CARE_LEVEL_3"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CARE_LEVEL_1
Pflegestufe 1
|
CARE_LEVEL_2
Pflegestufe 2
|
CARE_LEVEL_3
Pflegestufe 3
|
| Modifier and Type | Method and Description |
|---|---|
static CareLevel |
fromValue(String v) |
String |
value() |
static CareLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CareLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CareLevel CARE_LEVEL_1
public static final CareLevel CARE_LEVEL_2
public static final CareLevel CARE_LEVEL_3
public static CareLevel[] values()
for (CareLevel c : CareLevel.values()) System.out.println(c);
public static CareLevel valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2014 OpenEstate. All rights reserved.