public enum ActionSelectionBehavior extends Enum<ActionSelectionBehavior>
| Enum Constant and Description |
|---|
ALL
All the actions in the group must be selected as a single unit.
|
ALLORNONE
All the actions in the group are meant to be chosen as a single unit: either all must be selected by the end user, or none may be selected.
|
ANY
Any number of the actions in the group may be chosen, from zero to all.
|
ATMOSTONE
The end user may choose zero or at most one of the actions in the group.
|
EXACTLYONE
The end user must choose one and only one of the selectable actions in the group.
|
NULL
added to help the parsers
|
ONEORMORE
The end user must choose a minimum of one, and as many additional as desired.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionSelectionBehavior |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static ActionSelectionBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionSelectionBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionSelectionBehavior ANY
public static final ActionSelectionBehavior ALL
public static final ActionSelectionBehavior ALLORNONE
public static final ActionSelectionBehavior EXACTLYONE
public static final ActionSelectionBehavior ATMOSTONE
public static final ActionSelectionBehavior ONEORMORE
public static final ActionSelectionBehavior NULL
public static ActionSelectionBehavior[] values()
for (ActionSelectionBehavior c : ActionSelectionBehavior.values()) System.out.println(c);
public static ActionSelectionBehavior 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 static ActionSelectionBehavior fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.