Package org.hl7.fhir.r5.model
Enum Timing.EventTiming
- java.lang.Object
-
- java.lang.Enum<Timing.EventTiming>
-
- org.hl7.fhir.r5.model.Timing.EventTiming
-
- All Implemented Interfaces:
Serializable
,Comparable<Timing.EventTiming>
- Enclosing class:
- Timing
public static enum Timing.EventTiming extends Enum<Timing.EventTiming>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AC
before meal (from lat.ACD
before lunch (from lat.ACM
before breakfast (from lat.ACV
before dinner (from lat.AFT
Event occurs during the afternoon.AFT_EARLY
Event occurs during the early afternoon.AFT_LATE
Event occurs during the late afternoon.C
Description: meal (from lat.CD
Description: lunch (from lat.CM
Description: breakfast (from lat.CV
Description: dinner (from lat.EVE
Event occurs during the evening.EVE_EARLY
Event occurs during the early evening.EVE_LATE
Event occurs during the late evening.HS
Description: Prior to beginning a regular period of extended sleep (this would exclude naps).MORN
Event occurs during the morning.MORN_EARLY
Event occurs during the early morning.MORN_LATE
Event occurs during the late morning.NIGHT
Event occurs during the night.NOON
Event occurs around 12:00pm.NULL
added to help the parsers with the generic typesPC
after meal (from lat.PCD
after lunch (from lat.PCM
after breakfast (from lat.PCV
after dinner (from lat.PHS
Event occurs [offset] after subject goes to sleep.WAKE
Description: Upon waking up from a regular period of sleep, in order to start regular activities (this would exclude waking up from a nap or temporarily waking up during a period of sleep)\r\n\n \n Usage Notes: e.g.\r\n\n Take pulse rate on waking in management of thyrotoxicosis.\r\n\n Take BP on waking in management of hypertension\r\n\n Take basal body temperature on waking in establishing date of ovulation
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Timing.EventTiming
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static Timing.EventTiming
valueOf(String name)
Returns the enum constant of this type with the specified name.static Timing.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 Timing.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 Timing.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 Timing.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 Timing.EventTiming NOON
Event occurs around 12:00pm. The exact time is unspecified and established by institution convention or patient interpretation.
-
AFT
public static final Timing.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 Timing.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 Timing.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 Timing.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 Timing.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 Timing.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 Timing.EventTiming NIGHT
Event occurs during the night. The exact time is unspecified and established by institution convention or patient interpretation.
-
PHS
public static final Timing.EventTiming PHS
Event occurs [offset] after subject goes to sleep. The exact time is unspecified and established by institution convention or patient interpretation.
-
HS
public static final Timing.EventTiming HS
Description: Prior to beginning a regular period of extended sleep (this would exclude naps). Note that this might occur at different times of day depending on a person's regular sleep schedule.
-
WAKE
public static final Timing.EventTiming WAKE
Description: Upon waking up from a regular period of sleep, in order to start regular activities (this would exclude waking up from a nap or temporarily waking up during a period of sleep)\r\n\n \n Usage Notes: e.g.\r\n\n Take pulse rate on waking in management of thyrotoxicosis.\r\n\n Take BP on waking in management of hypertension\r\n\n Take basal body temperature on waking in establishing date of ovulation
-
C
public static final Timing.EventTiming C
Description: meal (from lat. ante cibus)
-
CM
public static final Timing.EventTiming CM
Description: breakfast (from lat. cibus matutinus)
-
CD
public static final Timing.EventTiming CD
Description: lunch (from lat. cibus diurnus)
-
CV
public static final Timing.EventTiming CV
Description: dinner (from lat. cibus vespertinus)
-
AC
public static final Timing.EventTiming AC
before meal (from lat. ante cibus)
-
ACM
public static final Timing.EventTiming ACM
before breakfast (from lat. ante cibus matutinus)
-
ACD
public static final Timing.EventTiming ACD
before lunch (from lat. ante cibus diurnus)
-
ACV
public static final Timing.EventTiming ACV
before dinner (from lat. ante cibus vespertinus)
-
PC
public static final Timing.EventTiming PC
after meal (from lat. post cibus)
-
PCM
public static final Timing.EventTiming PCM
after breakfast (from lat. post cibus matutinus)
-
PCD
public static final Timing.EventTiming PCD
after lunch (from lat. post cibus diurnus)
-
PCV
public static final Timing.EventTiming PCV
after dinner (from lat. post cibus vespertinus)
-
NULL
public static final Timing.EventTiming NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static Timing.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 (Timing.EventTiming c : Timing.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 Timing.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 Timing.EventTiming fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-