node-opcua-enum
Version:
pure nodejs OPCUA SDK - module enum
75 lines (73 loc) • 2.1 kB
TypeScript
/**
* @module node-opcua-enum
*
*/
/**
* Represents an Item of an Enum.
*/
export declare class EnumItem {
key: string;
value: number;
/**
*
* @param key the enum key
* @param value the enum value
*/
constructor(key: string, value: number);
/**
* Checks if the EnumItem is the same as the passing object.
*
* @param {EnumItem | String | Number} item The object to check with.
* @return {Boolean} The check result.
*/
is(item: EnumItem | string | number): boolean;
/**
* Checks if the flagged EnumItem has the passing object.
*
* @param {EnumItem | String |Number} value The object to check with.
* @return {Boolean} The check result.
*/
has(value: string | number | EnumItem): boolean;
/**
* Returns String representation of this EnumItem.
*
* @return {String} String representation of this EnumItem.
*/
toString(): string;
/**
* Returns JSON object representation of this EnumItem.
* @return {String} JSON object representation of this EnumItem.
*/
toJSON(): any;
/**
* Returns the value to compare with.
* @return {String} The value to compare with.
*/
valueOf(): number;
}
export interface _TypescriptEnum {
[key: string | number]: number | string;
}
export declare function adaptTypescriptEnum(map: _TypescriptEnum | string[]): _TypescriptEnum;
/**
* @class Enum
* @constructor
* Represents an Enum with enum items.
* @param {Array || Object} map This are the enum items.
*/
export declare class Enum {
private readonly enumItems;
private readonly _isFlaggable;
constructor(map: _TypescriptEnum | string[]);
get isFlaggable(): boolean;
/**
* Returns the appropriate EnumItem.
* @param key The object to get with.
* @return the get result.
*/
get(key: EnumItem | string | number): EnumItem | null;
getDefaultValue(): EnumItem;
toString(): string;
private _getByString;
private _getByNum;
}