aes70
Version:
A controller library for the AES70 protocol.
61 lines (58 loc) • 1.43 kB
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Type of string comparison.
* @class OcaStringComparisonType
*/
export class OcaStringComparisonType extends Enum({
Exact: 0,
Substring: 1,
Contains: 2,
ExactCaseInsensitive: 3,
SubstringCaseInsensitive: 4,
ContainsCaseInsensitive: 5,
}) {}
/**
* Singleton object corresponding to the entry with value ``0``.
* @type {OcaStringComparisonType}
* @member Exact
* @memberof OcaStringComparisonType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaStringComparisonType}
* @member Substring
* @memberof OcaStringComparisonType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaStringComparisonType}
* @member Contains
* @memberof OcaStringComparisonType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaStringComparisonType}
* @member ExactCaseInsensitive
* @memberof OcaStringComparisonType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``4``.
* @type {OcaStringComparisonType}
* @member SubstringCaseInsensitive
* @memberof OcaStringComparisonType
* @static
*/
/**
* Singleton object corresponding to the entry with value ``5``.
* @type {OcaStringComparisonType}
* @member ContainsCaseInsensitive
* @memberof OcaStringComparisonType
* @static
*/