ConstraintType enum
The type of constraint represented by an OptionConstraint.
Values
- intRange → const ConstraintType
-
Constraint represents a range of
OptionType.INTvalues.min,max, andquantwill belong, andlistwill be unset.const ConstraintType('INT_RANGE') - fixedRange → const ConstraintType
-
Constraint represents a range of
OptionType.FIXEDvalues.min,max, andquantwill bedouble, andlistwill be unset.const ConstraintType('FIXED_RANGE') - intList → const ConstraintType
-
Constraint represents a specific list of
OptionType.INTvalues.listwill containlongvalues, and the other fields will be unset.const ConstraintType('INT_LIST') - fixedList → const ConstraintType
-
Constraint represents a specific list of
OptionType.FIXEDvalues.listwill containdoublevalues, and the other fields will be unset.const ConstraintType('FIXED_LIST') - stringList → const ConstraintType
-
Constraint represents a specific list of
OptionType.STRINGvalues.listwill containDOMStringvalues, 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
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - 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.