com.google.gwt.logging.impl
Interface LevelImpl
- All Known Implementing Classes:
- LevelImplNull, LevelImplRegular
public interface LevelImpl
Interface for the implementation of Level. We use a LevelImplNull to ensure
that logging code compiles out when logging is disabled, and a
LevelImplRegular to provide normal functionality when logging is enabled.
|
Method Summary |
java.util.logging.Level |
all()
|
java.util.logging.Level |
config()
|
java.util.logging.Level |
fine()
|
java.util.logging.Level |
finer()
|
java.util.logging.Level |
finest()
|
java.lang.String |
getName()
|
java.util.logging.Level |
info()
|
int |
intValue()
|
java.util.logging.Level |
off()
|
java.util.logging.Level |
parse(java.lang.String name)
|
void |
setName(java.lang.String newName)
|
void |
setValue(int newValue)
|
java.util.logging.Level |
severe()
|
java.lang.String |
toString()
|
java.util.logging.Level |
warning()
|
all
java.util.logging.Level all()
config
java.util.logging.Level config()
fine
java.util.logging.Level fine()
finer
java.util.logging.Level finer()
finest
java.util.logging.Level finest()
getName
java.lang.String getName()
info
java.util.logging.Level info()
intValue
int intValue()
off
java.util.logging.Level off()
parse
java.util.logging.Level parse(java.lang.String name)
setName
void setName(java.lang.String newName)
setValue
void setValue(int newValue)
severe
java.util.logging.Level severe()
toString
java.lang.String toString()
- Overrides:
toString in class java.lang.Object
warning
java.util.logging.Level warning()