domain~ DatumSamplesType

An enumeration of datum samples types.

Constructor

new DatumSamplesType(name, key)

Constructor.

Parameters:
NameTypeDescription
namestring

the unique name for this type

keystring

the key value associated with this type

Extends

Members

key

Get the key value.

name

Get the enum name.

Methods

equals(value) → {boolean}

Test if a string is equal to this enum's name.

As long as enum values are consistently obtained from the module:util~Enum.enumValues array then enum instances can be compared with ===. If unsure, this method can be used to compare string values instead.

If value is passed as an actual Enum instance, then if that enum is the same class as this enum it's name is compared to this instance's name.

Parameters:
NameTypeDescription
valuestring | Enum

the value to test

Returns:

true if value is the same as this instance's name value

Type: 
boolean