JoinType class

A SQL join type that can be used in 'SELECT' statements

Properties

hashCode int
The hash code for this object.
no setterinherited
id int
Identification code for this join type
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
string String
String representation of this join type
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

Constants

CrossJoin → const JoinType
'CROSS JOIN' join type
FullJoin → const JoinType
'FULL JOIN' join type
InnerJoin → const JoinType
'INNER JOIN' join type
LeftJoin → const JoinType
'LEFT JOIN' join type
RightJoin → const JoinType
'RIGHT JOIN' join type