Dimensionality enum
An enum for dimensionality or topological dimension in the context of geospatial applications.
Values
- punctual → const Dimensionality
-
A dimensionality representing a punctual geometry (or position, point, vertex, node, marker etc.) with the topological dimension of
0
.const Dimensionality(0)
- linear → const Dimensionality
-
A dimensionality representing a linear geometry (or chain, line string, polyline, path, curve etc.) with the topological dimension of
1
.const Dimensionality(1)
- areal → const Dimensionality
-
A dimensionality representing an areal geometry (or polygon, area, surface, box etc.) with the topological dimension of
2
.const Dimensionality(2)
- volymetric → const Dimensionality
-
A dimensionality representing a volymetric geometry (or tetrahedron, polyhedron, volyme, cube etc.) with the topological dimension of
3
.const Dimensionality(3)
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
- topologicalDimension → int
-
The topological dimension (
0
: punctual,1
: linear,2
: areal,3
: volymetric).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
-
values
→ const List<
Dimensionality> - A constant List of the values in this enum, in order of their declaration.