Enum Class LogKategorie

java.lang.Object
java.lang.Enum<LogKategorie>
de.bund.bva.isyfact.logging.LogKategorie
All Implemented Interfaces:
Serializable, Comparable<LogKategorie>, Constable

public enum LogKategorie extends Enum<LogKategorie>
Kategorie des Logeintrags. Kategorien werden beim Aufruf des Logging-Frameworks nur im Level INFO verwendet.
  • Enum Constant Details

    • JOURNAL

      public static final LogKategorie JOURNAL
      Informationen zu Systemzustand, Systemereignissen und durchgeführten Operationen.
    • METRIK

      public static final LogKategorie METRIK
      Kennzahlen zum Systembetrieb und zur Systemnutzung.
    • PROFILING

      public static final LogKategorie PROFILING
      Informationen zum Laufzeitverhalten des Systems.
    • SICHERHEIT

      public static final LogKategorie SICHERHEIT
      (Potentieller) Angriffsversuch.
  • Method Details

    • values

      public static LogKategorie[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LogKategorie valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null