ConstraintType enum

The type of constraint represented by an OptionConstraint.

Inheritance
Available extensions

Values

intRange → const ConstraintType

Constraint represents a range of OptionType.INT values. min, max, and quant will be long, and list will be unset.

const ConstraintType('INT_RANGE')
fixedRange → const ConstraintType

Constraint represents a range of OptionType.FIXED values. min, max, and quant will be double, and list will be unset.

const ConstraintType('FIXED_RANGE')
intList → const ConstraintType

Constraint represents a specific list of OptionType.INT values. list will contain long values, and the other fields will be unset.

const ConstraintType('INT_LIST')
fixedList → const ConstraintType

Constraint represents a specific list of OptionType.FIXED values. list will contain double values, and the other fields will be unset.

const ConstraintType('FIXED_LIST')
stringList → const ConstraintType

Constraint represents a specific list of OptionType.STRING values. list will contain DOMString values, and the other fields will be unset.

const ConstraintType('STRING_LIST')

Properties

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
toJS String
no setter
value String
final

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

Static Methods

fromJS(String value) ConstraintType

Constants

values → const List<ConstraintType>
A constant List of the values in this enum, in order of their declaration.