ServiceState enum Journal
These states are used to describe ServiceOfJournal.
Usual life of ServiceOfJournal and it's states, looks like:
| Created | Sent to DB | This day | Next day | Deleted |
|---|---|---|---|---|
added |
finished |
outDated and archived |
when archive is full | |
added |
rejected |
never archived | deleted by user | |
added |
finished |
removed by user request |
deleted by user |
Constructors
- ServiceState()
-
const
Values
- added → const ServiceState
- finished → const ServiceState
- rejected → const ServiceState
- outDated → const ServiceState
- removed → const ServiceState
Properties
Methods
-
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
Constants
-
values
→ const List<
ServiceState> -
A constant List of the values in this enum, in order of their declaration.
[added, finished, rejected, outDated, removed]