ResultState enum
An indication of whether an analysis result is valid, and if not why.
Constants
- INVALID_FILE_TYPE → const ResultState
-
An indication that analysis could not be performed because the path represents a file of a type that cannot be analyzed.
const ResultState(0)
- NOT_A_FILE → const ResultState
-
An indication that analysis could not be performed because the path does not represent a file. It might represent something else, such as a directory, or it might not represent anything.
const ResultState(1)
- VALID → const ResultState
-
An indication that analysis completed normally and the results are valid.
const ResultState(2)
-
values
→ const List<
ResultState> -
A constant List of the values in this enum, in order of their declaration.
const List<
ResultState>
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- index → int
-
The integer index of this enum.
final - runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
Returns a string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited