Uses of Class
com.google.gwt.core.ext.TreeLogger.Type
-
Packages that use TreeLogger.Type Package Description com.google.gwt.core.ext Classes used to extend the GWT compiler. -
-
Uses of TreeLogger.Type in com.google.gwt.core.ext
Fields in com.google.gwt.core.ext declared as TreeLogger.Type Modifier and Type Field Description static TreeLogger.TypeTreeLogger. ALLLogs everything -- quite a bit of stuff.static TreeLogger.TypeTreeLogger. DEBUGLogs detailed information that could be useful during debugging.static TreeLogger.TypeTreeLogger. ERRORLogs an error.static TreeLogger.TypeTreeLogger. INFOLogs information.static TreeLogger.TypeTreeLogger. SPAMLogs extremely verbose and detailed information that is typically useful only to product implementors.static TreeLogger.TypeTreeLogger. TRACELogs information related to lower-level operation.static TreeLogger.TypeTreeLogger. WARNLogs a warning.Methods in com.google.gwt.core.ext that return TreeLogger.Type Modifier and Type Method Description static TreeLogger.Type[]TreeLogger.Type. instances()Gets all the possible severity types as an array.static TreeLogger.TypeTreeLogger.Type. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TreeLogger.Type[]TreeLogger.Type. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.gwt.core.ext with parameters of type TreeLogger.Type Modifier and Type Method Description TreeLoggerTreeLogger. branch(TreeLogger.Type type, java.lang.String msg)CallsTreeLogger.branch(com.google.gwt.core.ext.TreeLogger.Type, String, Throwable, com.google.gwt.core.ext.TreeLogger.HelpInfo)with anullcaughtandhelpInfo.TreeLoggerTreeLogger. branch(TreeLogger.Type type, java.lang.String msg, java.lang.Throwable caught)abstract TreeLoggerTreeLogger. branch(TreeLogger.Type type, java.lang.String msg, java.lang.Throwable caught, TreeLogger.HelpInfo helpInfo)Produces a branched logger, which can be used to write messages that are logically grouped together underneath the current logger.abstract booleanTreeLogger. isLoggable(TreeLogger.Type type)Determines whether or not a log entry of the specified type would actually be logged.booleanTreeLogger.Type. isLowerPriorityThan(TreeLogger.Type other)Determines whether this log type is of lower priority than some other log type.voidTreeLogger. log(TreeLogger.Type type, java.lang.String msg)voidTreeLogger. log(TreeLogger.Type type, java.lang.String msg, java.lang.Throwable caught)abstract voidTreeLogger. log(TreeLogger.Type type, java.lang.String msg, java.lang.Throwable caught, TreeLogger.HelpInfo helpInfo)Logs a message and/or an exception, with optional help info.
-