123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- import { JavaObject, cast_java_lang_Object } from '../java/lang/JavaObject';
- export class LogLevel extends JavaObject {
- /** the name of the enumeration value */
- private readonly __name : String;
- /** the ordinal value for the enumeration value */
- private readonly __ordinal : number;
- /** an array containing all values of this enumeration */
- private static readonly all_values_by_ordinal : Array<LogLevel> = [];
- /** an array containing all values of this enumeration indexed by their name*/
- private static readonly all_values_by_name : Map<String, LogLevel> = new Map<String, LogLevel>();
- public static readonly APP : LogLevel = new LogLevel("APP", 0, 0);
- public static readonly ERROR : LogLevel = new LogLevel("ERROR", 1, 10);
- public static readonly WARNING : LogLevel = new LogLevel("WARNING", 2, 100);
- public static readonly INFO : LogLevel = new LogLevel("INFO", 3, 1000);
- public static readonly DEBUG : LogLevel = new LogLevel("DEBUG", 4, 10000);
- private readonly level : number;
- /**
- * Der von der Ausfzählung intern genutzte Konstruktor der Aufzählung
- *
- * @param level der Integer-Wert des Log-Levels.
- */
- private constructor(name : string, ordinal : number, level : number) {
- super();
- this.__name = name;
- this.__ordinal = ordinal;
- LogLevel.all_values_by_ordinal.push(this);
- LogLevel.all_values_by_name.set(name, this);
- this.level = level;
- }
- /**
- * Gibt den Integer-Wert des Log-Levels zurück.
- *
- * @return der Integer-Wert des Log-Levels
- */
- public toInteger() : number {
- return this.level;
- }
- /**
- * Returns the name of this enumeration value.
- *
- * @returns the name
- */
- private name() : String {
- return this.__name;
- }
- /**
- * Returns the ordinal value of this enumeration value.
- *
- * @returns the ordinal value
- */
- private ordinal() : number {
- return this.__ordinal;
- }
- /**
- * Returns the name of this enumeration value.
- *
- * @returns the name
- */
- public toString() : String {
- return this.__name;
- }
- /**
- * Returns true if this and the other enumeration values are equal.
- *
- * @param other the other enumeration value
- *
- * @returns true if they are equal and false otherwise
- */
- public equals(other : JavaObject) : boolean {
- if (!(other instanceof LogLevel))
- return false;
- return this === other;
- }
- /**
- * Returns the ordinal value as hashcode, since the ordinal value is unique.
- *
- * @returns the ordinal value as hashcode
- */
- public hashCode() : number {
- return this.__ordinal;
- }
- /**
- * Compares this enumeration value with the other enumeration value by their ordinal value.
- *
- * @param other the other enumeration value
- *
- * @returns a negative, zero or postive value as this enumeration value is less than, equal to
- * or greater than the other enumeration value
- */
- public compareTo(other : LogLevel) : number {
- return this.__ordinal - other.__ordinal;
- }
- /**
- * Returns an array with enumeration values.
- *
- * @returns the array with enumeration values
- */
- public static values() : Array<LogLevel> {
- return [...this.all_values_by_ordinal];
- }
- /**
- * Returns the enumeration value with the specified name.
- *
- * @param name the name of the enumeration value
- *
- * @returns the enumeration values or null
- */
- public static valueOf(name : String) : LogLevel | null {
- let tmp : LogLevel | undefined = this.all_values_by_name.get(name);
- return (!tmp) ? null : tmp;
- }
- isTranspiledInstanceOf(name : string): boolean {
- return ['de.nrw.schule.svws.logger.LogLevel'].includes(name);
- }
- }
- export function cast_de_nrw_schule_svws_logger_LogLevel(obj : unknown) : LogLevel {
- return obj as LogLevel;
- }
|