Searched defs:Level (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/logging/
H A DLevel.java34 * The Level class defines a set of standard logging levels that
35 * can be used to control logging output. The logging Level objects
39 * Clients should normally use the predefined Level constants such
40 * as Level.SEVERE.
57 * levels by subclassing Level. In such cases subclasses should
65 public class Level implements java.io.Serializable { class in inherits:java.io.Serializable
90 public static final Level OFF = new Level("OFF",Integer.MAX_VALUE, defaultBundle);
101 public static final Level SEVERE = new Level("SEVER
189 protected Level(String name, int value) { method in class:Level
204 protected Level(String name, int value, String resourceBundleName) { method in class:Level
[all...]
/openjdk7/jdk/src/share/classes/sun/util/logging/
H A DPlatformLogger.java89 * These constants should be shortcuts to Level enum constants that
91 * modification and avoid the conversion from int to Level enum.
93 * This can be done when JavaFX is converted to use the new PlatformLogger.Level API.
108 public static enum Level { enum in class:PlatformLogger
109 // The name and value must match that of {@code java.util.logging.Level}s.
122 * Associated java.util.logging.Level lazily initialized in
127 /* java.util.logging.Level */ Object javaLevel;
140 static Level valueOf(int level) {
144 case PlatformLogger.FINEST : return Level.FINEST;
145 case PlatformLogger.FINE : return Level
[all...]

Completed in 797 milliseconds