Class fever.data.formatter.NumberBaseRoundType

Description

Defines the constant values for properties that specify a type of rounding.

Field Index

DOWN, NEAREST, NONE, UP

Field Detail

NONE

static public NONE:String
Perform no rounding.

DOWN

static public DOWN:String
Rounds a number down to an integer that is both closest to, and less than or equal to, the input number.

UP

static public UP:String
Rounds a number up to an integer value that is both closest to, and greater than or equal to, the input number.

NEAREST

static public NEAREST:String
Rounds a number up or down to the nearest integer.