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

/libcore/ojluni/src/main/java/java/util/logging/
H A DLevel.java38 * The Level class defines a set of standard logging levels that
39 * can be used to control logging output. The logging Level objects
43 * Clients should normally use the predefined Level constants such
44 * as Level.SEVERE.
61 * levels by subclassing Level. In such cases subclasses should
69 public class Level implements java.io.Serializable { class in inherits:java.io.Serializable
96 public static final Level OFF = new Level("OFF",Integer.MAX_VALUE, defaultBundle);
107 public static final Level SEVERE = new Level("SEVER
195 protected Level(String name, int value) { method in class:Level
210 protected Level(String name, int value, String resourceBundleName) { method in class:Level
[all...]
/libcore/ojluni/src/main/java/sun/util/logging/
H A DPlatformLogger.java88 * These constants should be shortcuts to Level enum constants that
90 * modification and avoid the conversion from int to Level enum.
92 * This can be done when JavaFX is converted to use the new PlatformLogger.Level API.
107 public static enum Level { enum in class:PlatformLogger
108 // The name and value must match that of {@code java.util.logging.Level}s.
121 * Associated java.util.logging.Level lazily initialized in
126 /* java.util.logging.Level */ Object javaLevel;
139 static Level valueOf(int level) {
143 case PlatformLogger.FINEST : return Level.FINEST;
144 case PlatformLogger.FINE : return Level
[all...]

Completed in 112 milliseconds