FrameExclude enum

Specifies how to exclude rows from the window frame.

Inheritance
Available extensions

Values

noOthers → const FrameExclude

No rows are excluded from the window frame.

This is the default behavior

const FrameExclude._('NO OTHERS')
currentRow → const FrameExclude

Excludes the current row from the window frame.

const FrameExclude._('CURRENT ROW')
group → const FrameExclude

Excludes the current row and its peers from the window frame.

Peers are rows that are considered equivalent to the current row based on the window's ORDER BY clause.

const FrameExclude._('GROUP')
ties → const FrameExclude

Excludes the peers of the current row from the window frame, but keeps the current row.

Only rows that have exactly the same values for the ORDER BY columns as the current row are excluded, while the current row itself remains in the frame.

const FrameExclude._('TIES')

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

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<FrameExclude>
A constant List of the values in this enum, in order of their declaration.