Java java.util.logging Level fields, constructors, methods, implement or subclass

Example usage for Java java.util.logging Level fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util.logging Level.

The text is from its open source code.

Subclass

java.util.logging.Level has subclasses.
Click this link to see all its subclasses.

Field

LevelOFF
OFF is a special level that can be used to turn off logging.
LevelSEVERE
SEVERE is a message level indicating a serious failure.
LevelWARNING
WARNING is a message level indicating a potential problem.
LevelINFO
INFO is a message level for informational messages.
LevelCONFIG
CONFIG is a message level for static configuration messages.
LevelFINE
FINE is a message level providing tracing information.
LevelFINER
FINER indicates a fairly detailed tracing message.
LevelFINEST
FINEST indicates a highly detailed tracing message.
LevelALL
ALL indicates that all messages should be logged.

Method

booleanequals(Object ox)
Compare two objects for value equality.
StringgetLocalizedName()
Return the localized string name of the Level, for the current default locale.
StringgetName()
Return the non-localized string name of the Level.
intintValue()
Get the integer value for this level.
Levelparse(String name)
Parse a level name string into a Level.
StringtoString()
Returns a string representation of this Level.