public enum ListOrder extends Enum<ListOrder>
| Enum Constant and Description |
|---|
ALPHABETIC
The list is sorted alphabetically by an unspecified property of the items in the list.
|
CATEGORY
The list is sorted categorically by an unspecified property of the items in the list.
|
ENTRYDATE
The list is sorted by the date the item was added to the list.
|
EVENTDATE
The list is sorted by the data of the event.
|
NULL
added to help the parsers
|
PATIENT
The list is sorted by patient, with items for each patient grouped together.
|
PRIORITY
The list is sorted by priority.
|
SYSTEM
The list was sorted by the system.
|
USER
The list was sorted by a user.
|
| Modifier and Type | Method and Description |
|---|---|
static ListOrder |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static ListOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListOrder USER
public static final ListOrder SYSTEM
public static final ListOrder EVENTDATE
public static final ListOrder ENTRYDATE
public static final ListOrder PRIORITY
public static final ListOrder ALPHABETIC
public static final ListOrder CATEGORY
public static final ListOrder PATIENT
public static ListOrder[] values()
for (ListOrder c : ListOrder.values()) System.out.println(c);
public static ListOrder 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 ListOrder 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.