Enum EventTiming
- java.lang.Object
-
- java.lang.Enum<EventTiming>
-
- org.hl7.fhir.r4.model.codesystems.EventTiming
-
- All Implemented Interfaces:
Serializable,Comparable<EventTiming>
public enum EventTiming extends Enum<EventTiming>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTEvent occurs during the afternoon.AFT_EARLYEvent occurs during the early afternoon.AFT_LATEEvent occurs during the late afternoon.EVEEvent occurs during the evening.EVE_EARLYEvent occurs during the early evening.EVE_LATEEvent occurs during the late evening.MORNEvent occurs during the morning.MORN_EARLYEvent occurs during the early morning.MORN_LATEEvent occurs during the late morning.NIGHTEvent occurs during the night.NOONEvent occurs around 12:00pm.NULLadded to help the parsersPHSEvent occurs [offset] after subject goes to sleep.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventTimingfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static EventTimingvalueOf(String name)Returns the enum constant of this type with the specified name.static EventTiming[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MORN
public static final EventTiming MORN
Event occurs during the morning. The exact time is unspecified and established by institution convention or patient interpretation.
-
MORN_EARLY
public static final EventTiming MORN_EARLY
Event occurs during the early morning. The exact time is unspecified and established by institution convention or patient interpretation.
-
MORN_LATE
public static final EventTiming MORN_LATE
Event occurs during the late morning. The exact time is unspecified and established by institution convention or patient interpretation.
-
NOON
public static final EventTiming NOON
Event occurs around 12:00pm. The exact time is unspecified and established by institution convention or patient interpretation.
-
AFT
public static final EventTiming AFT
Event occurs during the afternoon. The exact time is unspecified and established by institution convention or patient interpretation.
-
AFT_EARLY
public static final EventTiming AFT_EARLY
Event occurs during the early afternoon. The exact time is unspecified and established by institution convention or patient interpretation.
-
AFT_LATE
public static final EventTiming AFT_LATE
Event occurs during the late afternoon. The exact time is unspecified and established by institution convention or patient interpretation.
-
EVE
public static final EventTiming EVE
Event occurs during the evening. The exact time is unspecified and established by institution convention or patient interpretation.
-
EVE_EARLY
public static final EventTiming EVE_EARLY
Event occurs during the early evening. The exact time is unspecified and established by institution convention or patient interpretation.
-
EVE_LATE
public static final EventTiming EVE_LATE
Event occurs during the late evening. The exact time is unspecified and established by institution convention or patient interpretation.
-
NIGHT
public static final EventTiming NIGHT
Event occurs during the night. The exact time is unspecified and established by institution convention or patient interpretation.
-
PHS
public static final EventTiming PHS
Event occurs [offset] after subject goes to sleep. The exact time is unspecified and established by institution convention or patient interpretation.
-
NULL
public static final EventTiming NULL
added to help the parsers
-
-
Method Detail
-
values
public static EventTiming[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EventTiming c : EventTiming.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventTiming valueOf(String name)
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
-
fromCode
public static EventTiming fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-