All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.mdoc-js-interfaces.2.6.1.source-code.LogLevel Maven / Gradle / Ivy

package mdoc.js.interfaces;

public enum LogLevel {
  Debug(1), Info(2), Warning(3), Error(4);

  private final int order;
  private LogLevel(int order) {
      this.order = order;
  }
  public int getOrder() {
      return order;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy