public enum LogKategorie extends Enum<LogKategorie>
| Enum Constant and Description |
|---|
JOURNAL
Informationen zu Systemzustand, Systemereignissen und durchgeführten Operationen.
|
METRIK
Kennzahlen zum Systembetrieb und zur Systemnutzung.
|
PROFILING
Informationen zum Laufzeitverhalten des Systems.
|
SICHERHEIT
(Potentieller) Angriffsversuch.
|
| Modifier and Type | Method and Description |
|---|---|
static LogKategorie |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogKategorie[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogKategorie JOURNAL
public static final LogKategorie METRIK
public static final LogKategorie PROFILING
public static final LogKategorie SICHERHEIT
public static LogKategorie[] values()
for (LogKategorie c : LogKategorie.values()) System.out.println(c);
public static LogKategorie valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.