File

libs/sensorml/src/lib/model/sml/ModeSetting.ts

Extends

AbstractSetting

Index

Properties
Methods

Properties

value
Type : string
Decorators :
@DisplayName('Value')
ref
Type : string
Decorators :
@DisplayName('Ref')
Inherited from AbstractSetting
Defined in AbstractSetting:8
value
Type : any
Decorators :
@DisplayName('Value')
Inherited from AbstractSetting
Defined in AbstractSetting:5

Methods

toString
toString()
Returns : string
toString
toString()
Inherited from AbstractSetting
Defined in AbstractSetting:10
Returns : string
import { AbstractSetting } from './AbstractSetting';
import { DisplayName } from '../../common/decorators/DisplayName';

export class ModeSetting extends AbstractSetting {
    @DisplayName('Value')
    value: string;

    toString() {
        return this.value && this.value.length ? this.value : 'Mode setting';
    }
}

result-matching ""

    No results matching ""