// 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 `AlternateHandling`](https://docs.rs/icu/latest/icu/collator/enum.AlternateHandling.html) for more information. */ export class CollatorAlternateHandling { #value = undefined; static #values = new Map([ ["NonIgnorable", 0], ["Shifted", 1] ]); static getAllEntries() { return CollatorAlternateHandling.#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 CollatorAlternateHandling.#objectValues[arguments[1]]; } if (value instanceof CollatorAlternateHandling) { return value; } let intVal = CollatorAlternateHandling.#values.get(value); // Nullish check, checks for null or undefined if (intVal == null) { return CollatorAlternateHandling.#objectValues[intVal]; } throw TypeError(value + " is not a CollatorAlternateHandling and does not correspond to any of its enumerator values."); } get value() { return [...CollatorAlternateHandling.#values.keys()][this.#value]; } get ffiValue() { return this.#value; } static #objectValues = [ new CollatorAlternateHandling(diplomatRuntime.internalConstructor, diplomatRuntime.internalConstructor, 0), new CollatorAlternateHandling(diplomatRuntime.internalConstructor, diplomatRuntime.internalConstructor, 1), ]; static NonIgnorable = CollatorAlternateHandling.#objectValues[0]; static Shifted = CollatorAlternateHandling.#objectValues[1]; }