File

libs/sensorml/src/lib/model/swe/AllowedValues.ts

Description

Defines the permitted values for the component as an enumerated list and/or a list of inclusive ranges

Extends

AbstractNumericAllowedValues

Index

Properties
Methods

Properties

values
Type : Array<number | >
Default value : []
Decorators :
@DisplayName('Values')
significantFigures
Type : number
Decorators :
@DisplayName('Significant figures')
values
Type : any[]
Decorators :
@DisplayName('Values')
extension
Type : any[]
Decorators :
@DisplayName('Extension')

Extension slot for future extensions to this standard.

id
Type : string
Decorators :
@DisplayName('Id')
extension
Type : any[]
Decorators :
@DisplayName('Extension')

Extension slot for future extensions to this standard.

id
Type : string
Decorators :
@DisplayName('Id')
values
Type : any[]
Decorators :
@DisplayName('Values')
Inherited from AbstractAllowedValues
extension
Type : any[]
Decorators :
@DisplayName('Extension')
Inherited from AbstractAllowedValues

Extension slot for future extensions to this standard.

id
Type : string
Decorators :
@DisplayName('Id')
Inherited from AbstractAllowedValues
extension
Type : any[]
Decorators :
@DisplayName('Extension')
Inherited from AbstractSWE
Defined in AbstractSWE:12

Extension slot for future extensions to this standard.

id
Type : string
Decorators :
@DisplayName('Id')
Inherited from AbstractSWE
Defined in AbstractSWE:7

Methods

toString
toString()
Returns : string
toString
toString()
Returns : string
toString
toString()
Returns : string
toString
toString()
Returns : string
toString
toString()
Returns : string
toString
toString()
Inherited from AbstractAllowedValues
Returns : string
toString
toString()
Inherited from AbstractAllowedValues
Returns : string
toString
toString()
Inherited from AbstractSWE
Defined in AbstractSWE:14
Returns : string
import { AbstractNumericAllowedValues } from './AbstractNumericAllowedValues';
import { DisplayName } from '../../common/decorators/DisplayName';

/**
 * Defines the permitted values for the component as an enumerated list and/or
 * a list of inclusive ranges
 */
export class AllowedValues extends AbstractNumericAllowedValues {
    @DisplayName('Values')
    values: Array<number | [number, number]> = [];

    toString() {
        return 'Allowed values';
    }
}

result-matching ""

    No results matching ""