RoundingAlgorithm enum

Specifies the algorithm used to round numbers.

Inheritance

Constructors

RoundingAlgorithm(int value)
const
RoundingAlgorithm.from(int value)
factory

Values

none → const RoundingAlgorithm
const RoundingAlgorithm(0)
roundDown → const RoundingAlgorithm
const RoundingAlgorithm(1)
roundUp → const RoundingAlgorithm
const RoundingAlgorithm(2)
roundTowardsZero → const RoundingAlgorithm
const RoundingAlgorithm(3)
roundAwayFromZero → const RoundingAlgorithm
const RoundingAlgorithm(4)
roundHalfDown → const RoundingAlgorithm
const RoundingAlgorithm(5)
roundHalfUp → const RoundingAlgorithm
const RoundingAlgorithm(6)
roundHalfTowardsZero → const RoundingAlgorithm
const RoundingAlgorithm(7)
roundHalfAwayFromZero → const RoundingAlgorithm
const RoundingAlgorithm(8)
roundHalfToEven → const RoundingAlgorithm
const RoundingAlgorithm(9)
roundHalfToOdd → const RoundingAlgorithm
const RoundingAlgorithm(10)

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