libs/sensorml/src/lib/model/sml/ModeChoice.ts
Properties |
Methods |
modes |
Type : Mode[]
|
Decorators :
@DisplayName('Modes')
|
extension |
Type : any[]
|
Decorators :
@DisplayName('Extension')
|
Inherited from
AbstractModes
|
Defined in
AbstractModes:12
|
Extension slot for future extensions to this standard. |
id |
Type : string
|
Decorators :
@DisplayName('Id')
|
Inherited from
AbstractModes
|
Defined in
AbstractModes:7
|
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
|
toString |
toString()
|
Returns :
string
|
toString |
toString()
|
Inherited from
AbstractModes
|
Defined in
AbstractModes:4
|
Returns :
string
|
toString |
toString()
|
Inherited from
AbstractModes
|
Defined in
AbstractModes:14
|
Returns :
string
|
toString |
toString()
|
Inherited from
AbstractSWE
|
Defined in
AbstractSWE:14
|
Returns :
string
|
import { AbstractModes } from './AbstractModes';
import { Mode } from './Mode';
import { DisplayName } from '../../common/decorators/DisplayName';
export class ModeChoice extends AbstractModes {
@DisplayName('Modes')
modes: Mode[];
toString() {
return 'Mode choice';
}
}