Enum EventTiming.ValueSet

    • Enum Constant Detail

      • MORN

        public static final EventTiming.ValueSet MORN
        Morning

        Event occurs during the morning. The exact time is unspecified and established by institution convention or patient interpretation.

      • MORN_EARLY

        public static final EventTiming.ValueSet MORN_EARLY
        Early Morning

        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.ValueSet MORN_LATE
        Late Morning

        Event occurs during the late morning. The exact time is unspecified and established by institution convention or patient interpretation.

      • NOON

        public static final EventTiming.ValueSet NOON
        Noon

        Event occurs around 12:00pm. The exact time is unspecified and established by institution convention or patient interpretation.

      • AFT

        public static final EventTiming.ValueSet AFT
        Afternoon

        Event occurs during the afternoon. The exact time is unspecified and established by institution convention or patient interpretation.

      • AFT_EARLY

        public static final EventTiming.ValueSet AFT_EARLY
        Early Afternoon

        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.ValueSet AFT_LATE
        Late Afternoon

        Event occurs during the late afternoon. The exact time is unspecified and established by institution convention or patient interpretation.

      • EVE

        public static final EventTiming.ValueSet EVE
        Evening

        Event occurs during the evening. The exact time is unspecified and established by institution convention or patient interpretation.

      • EVE_EARLY

        public static final EventTiming.ValueSet EVE_EARLY
        Early Evening

        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.ValueSet EVE_LATE
        Late Evening

        Event occurs during the late evening. The exact time is unspecified and established by institution convention or patient interpretation.

      • NIGHT

        public static final EventTiming.ValueSet NIGHT
        Night

        Event occurs during the night. The exact time is unspecified and established by institution convention or patient interpretation.

      • PHS

        public static final EventTiming.ValueSet PHS
        After Sleep

        Event occurs [offset] after subject goes to sleep. The exact time is unspecified and established by institution convention or patient interpretation.

    • Method Detail

      • values

        public static EventTiming.ValueSet[] 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.ValueSet c : EventTiming.ValueSet.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.ValueSet 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 name
        NullPointerException - if the argument is null
      • value

        public String value()
        Returns:
        The java.lang.String value of the code represented by this enum
      • from

        public static EventTiming.ValueSet from​(String value)
        Factory method for creating EventTiming.ValueSet values from a passed string value.
        Parameters:
        value - A string that matches one of the allowed code values
        Throws:
        IllegalArgumentException - If the passed string cannot be parsed into an allowed code value