import { JavaEnum } from '../../java/lang/JavaEnum'; import { Class } from '../../java/lang/Class'; export declare class ValidatorFehlerart extends JavaEnum { /** an array containing all values of this enumeration */ static readonly all_values_by_ordinal: Array; /** an array containing all values of this enumeration indexed by their name*/ static readonly all_values_by_name: Map; /** * MUSS-Fehler : verhindert das Absenden der Statistik */ static readonly MUSS: ValidatorFehlerart; /** * KANN-Fehler: Wahrscheinlicher Fehler, der erklärt werden muss, aber das Absenden der Statistik nicht verhindert */ static readonly KANN: ValidatorFehlerart; /** * HINWEIS: auf einen möglichen Fehler */ static readonly HINWEIS: ValidatorFehlerart; /** * UNGENUTZT: der Validator soll nicht ausgeführt werden, wegen Ausschluss im Umfeld oder Schulform */ static readonly UNGENUTZT: ValidatorFehlerart; private constructor(); /** * Returns an array with enumeration values. * * @returns the array with enumeration values */ static values(): Array; /** * Returns the enumeration value with the specified name. * * @param name the name of the enumeration value * * @returns the enumeration values or null */ static valueOf(name: string): ValidatorFehlerart | null; transpilerCanonicalName(): string; isTranspiledInstanceOf(name: string): boolean; static class: Class; } export declare function cast_de_svws_nrw_asd_validate_ValidatorFehlerart(obj: unknown): ValidatorFehlerart; //# sourceMappingURL=ValidatorFehlerart.d.ts.map