Source code

Revision control

Copy as Markdown

Other Tools

// generated by diplomat-tool
import wasm from "./diplomat-wasm.mjs";
import * as diplomatRuntime from "./diplomat-runtime.mjs";
/**
* 🚧 This API is experimental and may experience breaking changes outside major releases.
*
* See the [Rust documentation for `MissingFieldsStrategy`](https://docs.rs/icu/2.1.1/icu/calendar/options/enum.MissingFieldsStrategy.html) for more information.
*/
export class DateMissingFieldsStrategy {
#value = undefined;
static #values = new Map([
["Reject", 0],
["Ecma", 1]
]);
static getAllEntries() {
return DateMissingFieldsStrategy.#values.entries();
}
#internalConstructor(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 this;
}
return DateMissingFieldsStrategy.#objectValues[arguments[1]];
}
if (value instanceof DateMissingFieldsStrategy) {
return value;
}
let intVal = DateMissingFieldsStrategy.#values.get(value);
// Nullish check, checks for null or undefined
if (intVal != null) {
return DateMissingFieldsStrategy.#objectValues[intVal];
}
throw TypeError(value + " is not a DateMissingFieldsStrategy and does not correspond to any of its enumerator values.");
}
/** @internal */
static fromValue(value) {
return new DateMissingFieldsStrategy(value);
}
get value(){
return [...DateMissingFieldsStrategy.#values.keys()][this.#value];
}
/** @internal */
get ffiValue(){
return this.#value;
}
static #objectValues = [
new DateMissingFieldsStrategy(diplomatRuntime.internalConstructor, diplomatRuntime.internalConstructor, 0),
new DateMissingFieldsStrategy(diplomatRuntime.internalConstructor, diplomatRuntime.internalConstructor, 1),
];
static Reject = DateMissingFieldsStrategy.#objectValues[0];
static Ecma = DateMissingFieldsStrategy.#objectValues[1];
constructor(value) {
return this.#internalConstructor(...arguments)
}
}