Skip to main content

IntegerRangeManager

geovisto-mapReadme | API


geovisto-map / IntegerRangeManager

Class: IntegerRangeManager

This class specifies the integer type manager.

Author

Jiri Hynek

Extends

Implements

Constructors

new IntegerRangeManager()

new IntegerRangeManager(min, max): IntegerRangeManager

Parameters

min: number

max: number

Returns

IntegerRangeManager

Overrides

IntegerTypeManager.constructor

Source

model/internal/type/IntegerRangeManager.ts:14

Properties

max

private max: number

Source

model/internal/type/IntegerRangeManager.ts:12


min

private min: number

Source

model/internal/type/IntegerRangeManager.ts:11

Methods

deserialize()

deserialize(value): number

It converts the string representation of the number value.

Parameters

value: string

Returns

number

Implementation of

IIntegerRangeManager.deserialize

Inherited from

IntegerTypeManager.deserialize

Source

model/internal/type/IntegerTypeManager.ts:13


getMaxValue()

getMaxValue(): number

It returns the max value.

Returns

number

Implementation of

IIntegerRangeManager.getMaxValue

Source

model/internal/type/IntegerRangeManager.ts:30


getMinValue()

getMinValue(): number

It returns the min value.

Returns

number

Implementation of

IIntegerRangeManager.getMinValue

Source

model/internal/type/IntegerRangeManager.ts:23