AttributeOperator enum

An operator that defines the semantics of an AttributeSelector.

Inheritance

Constructors

AttributeOperator(String _text)
const

Values

equal → const AttributeOperator

The attribute value exactly equals the given value.

const AttributeOperator('=')
include → const AttributeOperator

The attribute value is a whitespace-separated list of words, one of which is the given value.

const AttributeOperator('~=')
dash → const AttributeOperator

The attribute value is either exactly the given value, or starts with the given value followed by a dash.

const AttributeOperator('|=')
prefix → const AttributeOperator

The attribute value begins with the given value.

const AttributeOperator('^=')
suffix → const AttributeOperator

The attribute value ends with the given value.

const AttributeOperator('\$=')
substring → const AttributeOperator

The attribute value contains the given value.

const AttributeOperator('*=')

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

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

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