
Package ca.uhn.fhir.model.dstu2.valueset
Enum ListOrderCodesEnum
- All Implemented Interfaces:
Serializable
,Comparable<ListOrderCodesEnum>
,java.lang.constant.Constable
public enum ListOrderCodesEnum extends Enum<ListOrderCodesEnum>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description SORTED_ALPHABETICALLY
Display: Sorted Alphabetically
Code Value: alphabetic The list is sorted alphabetically by an unspecified property of the items in the list.SORTED_BY_CATEGORY
Display: Sorted by Category
Code Value: category The list is sorted categorically by an unspecified property of the items in the list.SORTED_BY_EVENT_DATE
Display: Sorted by Event Date
Code Value: event-date The list is sorted by the data of the event.SORTED_BY_ITEM_DATE
Display: Sorted by Item Date
Code Value: entry-date The list is sorted by the date the item was added to the list.SORTED_BY_PATIENT
Display: Sorted by Patient
Code Value: patient The list is sorted by patient, with items for each patient grouped together.SORTED_BY_PRIORITY
Display: Sorted by Priority
Code Value: priority The list is sorted by priority.SORTED_BY_SYSTEM
Display: Sorted by System
Code Value: system The list was sorted by the system.SORTED_BY_USER
Display: Sorted by User
Code Value: user The list was sorted by a user. -
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<ListOrderCodesEnum>
VALUESET_BINDER
Converts codes to their respective enumerated valuesstatic String
VALUESET_IDENTIFIER
Identifier for this Value Set:static String
VALUESET_NAME
Name for this Value Set: List Order Codes -
Method Summary
Modifier and Type Method Description static ListOrderCodesEnum
forCode(String theCode)
Returns the enumerated value associated with this codeString
getCode()
Returns the code associated with this enumerated valueString
getSystem()
Returns the code system associated with this enumerated valuestatic ListOrderCodesEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static ListOrderCodesEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SORTED_BY_USER
Display: Sorted by User
Code Value: user The list was sorted by a user. The criteria the user used are not specified. -
SORTED_BY_SYSTEM
Display: Sorted by System
Code Value: system The list was sorted by the system. The criteria the user used are not specified; define additional codes to specify a particular order (or use other defined codes). -
SORTED_BY_EVENT_DATE
Display: Sorted by Event Date
Code Value: event-date The list is sorted by the data of the event. This can be used when the list has items which are dates with past or future events. -
SORTED_BY_ITEM_DATE
Display: Sorted by Item Date
Code Value: entry-date The list is sorted by the date the item was added to the list. Note that the date added to the list is not explicit in the list itself. -
SORTED_BY_PRIORITY
Display: Sorted by Priority
Code Value: priority The list is sorted by priority. The exact method in which priority has been determined is not specified. -
SORTED_ALPHABETICALLY
Display: Sorted Alphabetically
Code Value: alphabetic The list is sorted alphabetically by an unspecified property of the items in the list. -
SORTED_BY_CATEGORY
Display: Sorted by Category
Code Value: category The list is sorted categorically by an unspecified property of the items in the list. -
SORTED_BY_PATIENT
Display: Sorted by Patient
Code Value: patient The list is sorted by patient, with items for each patient grouped together.
-
-
Field Details
-
VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
Name for this Value Set: List Order Codes- See Also:
- Constant Field Values
-
VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCode
Returns the code associated with this enumerated value -
getSystem
Returns the code system associated with this enumerated value -
forCode
Returns the enumerated value associated with this code
-