public static enum Logging.RegexpFilterAgainst extends java.lang.Enum<Logging.RegexpFilterAgainst>
Logging.addLogFile(java.lang.String, java.util.logging.Level, boolean, java.util.logging.Formatter, java.lang.String, messif.utility.Logging.RegexpFilterAgainst, int, int)
.Enum Constant and Description |
---|
CLASS_NAME
The regular expression is matched against the name of the class from which the log record was invoked
|
LOGGER_NAME
The regular expression is matched against the name of the logger that was used to dispatch the log record
|
MESSAGE
The regular expression is matched against the record's text (the message that is logged)
|
METHOD_NAME
The regular expression is matched against the name of the method that from which the log record was invoked
|
Modifier and Type | Method and Description |
---|---|
static Logging.RegexpFilterAgainst |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Logging.RegexpFilterAgainst[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logging.RegexpFilterAgainst MESSAGE
public static final Logging.RegexpFilterAgainst LOGGER_NAME
public static final Logging.RegexpFilterAgainst CLASS_NAME
public static final Logging.RegexpFilterAgainst METHOD_NAME
public static Logging.RegexpFilterAgainst[] values()
for (Logging.RegexpFilterAgainst c : Logging.RegexpFilterAgainst.values()) System.out.println(c);
public static Logging.RegexpFilterAgainst valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null