public static enum LegacyLogManagerImpl.LoggingLevel extends java.lang.Enum<LegacyLogManagerImpl.LoggingLevel>
| Enum Constant and Description |
|---|
BASIC
All types will generate some output with BASIC level.
|
ERROR |
EXTENDED |
MAX
When
LegacyLogManagerImpl.setLoggingLevel(int) receives a number bigger than MAX level,
it gets stored as MAX. |
OFF |
UNDEFINED
Not a valid 4GL log level.
|
VERBOSE |
| Modifier and Type | Field and Description |
|---|---|
private int |
level
The numerical representation of the log level.
|
| Modifier and Type | Method and Description |
|---|---|
int |
toInt()
Returns the number representing the supported log level.
|
java.lang.String |
toString()
Returns the string representation of the logging level.
|
static LegacyLogManagerImpl.LoggingLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LegacyLogManagerImpl.LoggingLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegacyLogManagerImpl.LoggingLevel UNDEFINED
public static final LegacyLogManagerImpl.LoggingLevel OFF
public static final LegacyLogManagerImpl.LoggingLevel ERROR
public static final LegacyLogManagerImpl.LoggingLevel BASIC
public static final LegacyLogManagerImpl.LoggingLevel VERBOSE
public static final LegacyLogManagerImpl.LoggingLevel EXTENDED
public static final LegacyLogManagerImpl.LoggingLevel MAX
LegacyLogManagerImpl.setLoggingLevel(int) receives a number bigger than MAX level,
it gets stored as MAX.public static LegacyLogManagerImpl.LoggingLevel[] values()
for (LegacyLogManagerImpl.LoggingLevel c : LegacyLogManagerImpl.LoggingLevel.values()) System.out.println(c);
public static LegacyLogManagerImpl.LoggingLevel 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 nullpublic int toInt()
public java.lang.String toString()
toString in class java.lang.Enum<LegacyLogManagerImpl.LoggingLevel>