// generated by diplomat-tool import wasm from "./diplomat-wasm.mjs"; import * as diplomatRuntime from "./diplomat-runtime.mjs"; // Base enumerator definition /** See the [Rust documentation for `Numeric`](https://docs.rs/icu/latest/icu/collator/enum.Numeric.html) for more information. */ export class CollatorNumeric { #value = undefined; static #values = new Map([ ["Off", 0], ["On", 1] ]); static getAllEntries() { return CollatorNumeric.#values.entries(); } constructor(value) { if (arguments.length > 1 && arguments[0] === diplomatRuntime.internalConstructor) { // We pass in two internalConstructor arguments to create *new* // instances of this type, otherwise the enums are treated as singletons. if (arguments[1] === diplomatRuntime.internalConstructor ) { this.#value = arguments[2]; return; } return CollatorNumeric.#objectValues[arguments[1]]; } if (value instanceof CollatorNumeric) { return value; } let intVal = CollatorNumeric.#values.get(value); // Nullish check, checks for null or undefined if (intVal == null) { return CollatorNumeric.#objectValues[intVal]; } throw TypeError(value + " is not a CollatorNumeric and does not correspond to any of its enumerator values."); } get value() { return [...CollatorNumeric.#values.keys()][this.#value]; } get ffiValue() { return this.#value; } static #objectValues = [ new CollatorNumeric(diplomatRuntime.internalConstructor, diplomatRuntime.internalConstructor, 0), new CollatorNumeric(diplomatRuntime.internalConstructor, diplomatRuntime.internalConstructor, 1), ]; static Off = CollatorNumeric.#objectValues[0]; static On = CollatorNumeric.#objectValues[1]; }