libs/sensorml/src/lib/model/sml/ConstraintSetting.ts
Properties |
Methods |
value |
Type : AllowedTokens | AllowedTimes | AllowedValues
|
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
|
toString |
toString()
|
Returns :
string
|
toString |
toString()
|
Inherited from
AbstractSetting
|
Defined in
AbstractSetting:10
|
Returns :
string
|
import { AbstractSetting } from './AbstractSetting';
import { AllowedTokens } from '../swe/AllowedTokens';
import { AllowedTimes } from '../swe/AllowedTimes';
import { AllowedValues } from '../swe/AllowedValues';
import { DisplayName } from '../../common/decorators/DisplayName';
export class ConstraintSetting extends AbstractSetting {
@DisplayName('Value')
value: AllowedTokens | AllowedTimes | AllowedValues;
toString() {
return 'Constraint setting';
}
}