|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Logging.RegexpFilterAgainst>
messif.utility.Logging.RegexpFilterAgainst
public static enum Logging.RegexpFilterAgainst
Enumeration of possible regexp matcher targets for Logging.addLogFile(java.lang.String, java.util.logging.Level, boolean, java.util.logging.Formatter, java.lang.String, messif.utility.Logging.RegexpFilterAgainst)
.
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |