SlotStatus enum
The free/busy status of the slot.
- Inheritance
- Implemented types
- Available extensions
Values
- busy → const SlotStatus
-
Indicates that the time interval is busy because one or more events have been scheduled for that interval.
const SlotStatus(code: 'busy', display: 'Busy', system: _slotStatusUri)
- free → const SlotStatus
-
Indicates that the time interval is free for scheduling.
const SlotStatus(code: 'free', display: 'Free', system: _slotStatusUri)
-
Indicates that the time interval is busy and that the interval cannot be scheduled.
const SlotStatus(code: 'busy-unavailable', display: 'Busy (Unavailable)', system: _slotStatusUri)
- busyTentative → const SlotStatus
-
Indicates that the time interval is busy because one or more events have been tentatively scheduled for that interval.
const SlotStatus(code: 'busy-tentative', display: 'Busy (Tentative)', system: _slotStatusUri)
- enteredInError → const SlotStatus
-
This instance should not have been part of this patient's medical record.
const SlotStatus(code: 'entered-in-error', display: 'Entered in error', system: _slotStatusUri)
Properties
- code → String
-
A code representing the slot status.
final
- display → String
-
A human-readable display name for the slot status.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- system → String
-
The URI of the terminology system that defines the slot status codes.
final
Methods
-
compareTo(
SlotStatus other) → int -
Compares this object to another object.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromCode(
String code) → SlotStatus - Returns the slot status based on the string code, and returns entered-in-error if no match is found
Constants
-
values
→ const List<
SlotStatus> - A constant List of the values in this enum, in order of their declaration.