JobMessageSeverity enum
The different levels of severity of a job message.
Each of the values represents a different level of job message severity.
Constructors
- JobMessageSeverity()
-
const
Values
- info → const JobMessageSeverity
-
An informative message is generated during the job's execution, such as a job uploading data, job progressing on a server or job results. This message type never indicates a problem.
- warning → const JobMessageSeverity
-
A warning message is generated when a job experiences a situation that may cause a problem during its execution or when the result may not be what you expect. For example, when the job has failed to take a layer offline from an online map. Generally the job will run to successful completion even if there are one or more warnings.
- error → const JobMessageSeverity
-
An error message indicates a critical event that caused the job to fail. The error instance is also available from the job's Job.error property.
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<
JobMessageSeverity> - A constant List of the values in this enum, in order of their declaration.