public enum Treatment extends Enum<Treatment>
Enum Constant and Description |
---|
DEFAULT
Option marking to follow associations depending on environmental conditions.
|
FOLLOW
Option marking to follow associations, independent of environmental conditions.
|
Modifier and Type | Method and Description |
---|---|
static Treatment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Treatment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Treatment DEFAULT
public static final Treatment FOLLOW
public static Treatment[] values()
for (Treatment c : Treatment.values()) System.out.println(c);
public static Treatment 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 nullCopyright © 2021 e-Spirit AG. All Rights Reserved. Build 5.2.210210