org.incava.qualog

Class Qualog


public class Qualog
extends java.lang.Object

Provides quasi-logging support, more akin to debugging/development output and trace statements than logging per se. Supports both tabular and non-tabular output formats, the former being with the files, line numbers, classes, and methods being arranged so that they line up vertically. That format, I've found, is better for larger projects (500M+ LOC), in which class names and package hierarchies tend to be larger. The non-tabular format seems better for smaller projects.

Colors can be enabled and disabled, and associated with classes, methods, files, and levels. They are designed to work on terminals that support ANSI escape codes. On platforms without this -- e.g., Windows -- colorization is disabled.

Unlike real logging mechanisms, there is no support for log rotations. I recommend log4j for that. This package is mainly for programmers who want trace statements from a Java program. See Kernighan and Pike for a defense of those of us who develop and debug programs mainly relying on the print statement.

There is a serious performance hit to using this package, since each output statement results in an exception being created.

Field Summary

static ANSIColor
BLACK
The code for black text.
static ANSIColor
BLINK
The code for the blink attribute.
static ANSIColor
BLUE
The code for blue text.
static ANSIColor
BOLD
The code for bold decoration.
static String
CLASS_WIDTH_PROPERTY_KEY
static String
COLUMNAR_PROPERTY_KEY
static ANSIColor
CONCEALED
The code for hidden text.
static ANSIColor
CYAN
The code for cyan text.
protected static int
DEFAULT_STACK_DEPTH
The default number of stack trace elements to display in a stack.
static String
FILE_WIDTH_PROPERTY_KEY
static ANSIColor
GREEN
The code for green text.
static QlLevel
LEVEL0
static QlLevel
LEVEL1
static QlLevel
LEVEL2
static QlLevel
LEVEL3
static QlLevel
LEVEL4
static QlLevel
LEVEL5
static QlLevel
LEVEL6
static QlLevel
LEVEL7
static QlLevel
LEVEL8
static QlLevel
LEVEL9
static String
LEVEL_PROPERTY_KEY
static String
LINE_WIDTH_PROPERTY_KEY
static ANSIColor
MAGENTA
The code for magenta text.
static String
METHOD_WIDTH_PROPERTY_KEY
static ANSIColor
NONE
The code for no color applied.
static ANSIColor
NO_COLOR
An object denoting no color.
static ANSIColor[]
NO_COLORS
An array denoting no colors.
static int
NO_OUTPUT
static ANSIColor
ON_BLACK
The code for black background.
static ANSIColor
ON_BLUE
The code for blue background.
static ANSIColor
ON_CYAN
The code for cyan background.
static ANSIColor
ON_GREEN
The code for green background.
static ANSIColor
ON_MAGENTA
The code for magenta background.
static ANSIColor
ON_RED
The code for red background.
static ANSIColor
ON_WHITE
The code for white background.
static ANSIColor
ON_YELLOW
The code for yellow background.
static int
QUIET
static ANSIColor
RED
The code for red text.
static ANSIColor
RESET
The code for reset of colors and decorations.
static ANSIColor
REVERSE
The code for reversed text.
static String
SHOW_CLASSES_PROPERTY_KEY
static String
SHOW_FILES_PROPERTY_KEY
static ANSIColor
UNDERLINE
The code for underline (AKA underscore).
static ANSIColor
UNDERSCORE
The code for underscore (AKA underline).
static int
VERBOSE
static String
VERBOSE_PROPERTY_KEY
static String
VERSION
The version of the Qualog module.
static ANSIColor
WHITE
The code for white text.
static ANSIColor
YELLOW
The code for yellow text.
protected static QlTimer
timer
protected static QlWriter
writer

Method Summary

static void
addClassSkipped(Class cls)
static void
addClassSkipped(String clsName)
static void
addFilter(QlFilter filter)
static boolean
black(Object obj)
Writes logging output, with black foreground on the default background.
static boolean
black(Object[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(String msg)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, Object obj)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, Object[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, byte b)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, byte[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, char c)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, char[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, double d)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, double[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, float f)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, float[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, int i)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, int[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, long l)
Writes logging output, with black foreground on the default background.
static boolean
black(String name, long[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(byte b)
Writes logging output, with black foreground on the default background.
static boolean
black(byte[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(char c)
Writes logging output, with black foreground on the default background.
static boolean
black(char[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(double d)
Writes logging output, with black foreground on the default background.
static boolean
black(double[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(float f)
Writes logging output, with black foreground on the default background.
static boolean
black(float[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(int i)
Writes logging output, with black foreground on the default background.
static boolean
black(int[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(long l)
Writes logging output, with black foreground on the default background.
static boolean
black(long[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, Object obj)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, Object[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String msg)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, Object obj)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, Object[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, byte b)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, byte[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, char c)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, char[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, double d)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, double[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, float f)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, float[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, int i)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, int[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, long l)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, String name, long[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, byte b)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, byte[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, char c)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, char[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, double d)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, double[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, float f)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, float[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, int i)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, int[] ary)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, long l)
Writes logging output, with black foreground on the default background.
static boolean
black(QlLevel level, long[] ary)
Writes logging output, with black foreground on the default background.
static boolean
blink(Object obj)
Writes logging output, with blink foreground on the default background.
static boolean
blink(Object[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String msg)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, Object obj)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, Object[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, byte b)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, byte[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, char c)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, char[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, double d)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, double[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, float f)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, float[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, int i)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, int[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, long l)
Writes logging output, with blink foreground on the default background.
static boolean
blink(String name, long[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(byte b)
Writes logging output, with blink foreground on the default background.
static boolean
blink(byte[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(char c)
Writes logging output, with blink foreground on the default background.
static boolean
blink(char[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(double d)
Writes logging output, with blink foreground on the default background.
static boolean
blink(double[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(float f)
Writes logging output, with blink foreground on the default background.
static boolean
blink(float[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(int i)
Writes logging output, with blink foreground on the default background.
static boolean
blink(int[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(long l)
Writes logging output, with blink foreground on the default background.
static boolean
blink(long[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, Object obj)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, Object[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String msg)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, Object obj)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, Object[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, byte b)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, byte[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, char c)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, char[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, double d)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, double[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, float f)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, float[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, int i)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, int[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, long l)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, String name, long[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, byte b)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, byte[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, char c)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, char[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, double d)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, double[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, float f)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, float[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, int i)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, int[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, long l)
Writes logging output, with blink foreground on the default background.
static boolean
blink(QlLevel level, long[] ary)
Writes logging output, with blink foreground on the default background.
static boolean
blue(Object obj)
Writes logging output, with blue foreground on the default background.
static boolean
blue(Object[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String msg)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, Object obj)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, Object[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, byte b)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, byte[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, char c)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, char[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, double d)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, double[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, float f)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, float[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, int i)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, int[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, long l)
Writes logging output, with blue foreground on the default background.
static boolean
blue(String name, long[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(byte b)
Writes logging output, with blue foreground on the default background.
static boolean
blue(byte[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(char c)
Writes logging output, with blue foreground on the default background.
static boolean
blue(char[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(double d)
Writes logging output, with blue foreground on the default background.
static boolean
blue(double[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(float f)
Writes logging output, with blue foreground on the default background.
static boolean
blue(float[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(int i)
Writes logging output, with blue foreground on the default background.
static boolean
blue(int[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(long l)
Writes logging output, with blue foreground on the default background.
static boolean
blue(long[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, Object obj)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, Object[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String msg)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, Object obj)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, Object[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, byte b)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, byte[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, char c)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, char[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, double d)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, double[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, float f)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, float[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, int i)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, int[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, long l)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, String name, long[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, byte b)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, byte[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, char c)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, char[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, double d)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, double[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, float f)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, float[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, int i)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, int[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, long l)
Writes logging output, with blue foreground on the default background.
static boolean
blue(QlLevel level, long[] ary)
Writes logging output, with blue foreground on the default background.
static boolean
bold(Object obj)
Writes logging output, with bold foreground on the default background.
static boolean
bold(Object[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String msg)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, Object obj)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, Object[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, byte b)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, byte[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, char c)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, char[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, double d)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, double[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, float f)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, float[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, int i)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, int[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, long l)
Writes logging output, with bold foreground on the default background.
static boolean
bold(String name, long[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(byte b)
Writes logging output, with bold foreground on the default background.
static boolean
bold(byte[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(char c)
Writes logging output, with bold foreground on the default background.
static boolean
bold(char[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(double d)
Writes logging output, with bold foreground on the default background.
static boolean
bold(double[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(float f)
Writes logging output, with bold foreground on the default background.
static boolean
bold(float[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(int i)
Writes logging output, with bold foreground on the default background.
static boolean
bold(int[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(long l)
Writes logging output, with bold foreground on the default background.
static boolean
bold(long[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, Object obj)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, Object[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String msg)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, Object obj)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, Object[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, byte b)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, byte[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, char c)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, char[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, double d)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, double[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, float f)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, float[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, int i)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, int[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, long l)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, String name, long[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, byte b)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, byte[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, char c)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, char[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, double d)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, double[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, float f)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, float[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, int i)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, int[] ary)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, long l)
Writes logging output, with bold foreground on the default background.
static boolean
bold(QlLevel level, long[] ary)
Writes logging output, with bold foreground on the default background.
static void
clear()
static void
clearClassColor(String className)
static boolean
concealed(Object obj)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(Object[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String msg)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, Object obj)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, Object[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, byte b)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, byte[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, char c)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, char[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, double d)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, double[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, float f)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, float[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, int i)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, int[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, long l)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(String name, long[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(byte b)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(byte[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(char c)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(char[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(double d)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(double[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(float f)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(float[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(int i)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(int[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(long l)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(long[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, Object obj)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, Object[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String msg)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, Object obj)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, Object[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, byte b)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, byte[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, char c)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, char[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, double d)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, double[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, float f)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, float[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, int i)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, int[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, long l)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, String name, long[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, byte b)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, byte[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, char c)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, char[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, double d)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, double[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, float f)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, float[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, int i)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, int[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, long l)
Writes logging output, with concealed foreground on the default background.
static boolean
concealed(QlLevel level, long[] ary)
Writes logging output, with concealed foreground on the default background.
static boolean
cyan(Object obj)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(Object[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String msg)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, Object obj)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, Object[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, byte b)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, byte[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, char c)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, char[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, double d)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, double[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, float f)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, float[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, int i)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, int[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, long l)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(String name, long[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(byte b)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(byte[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(char c)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(char[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(double d)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(double[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(float f)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(float[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(int i)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(int[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(long l)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(long[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, Object obj)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, Object[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String msg)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, Object obj)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, Object[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, byte b)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, byte[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, char c)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, char[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, double d)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, double[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, float f)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, float[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, int i)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, int[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, long l)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, String name, long[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, byte b)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, byte[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, char c)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, char[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, double d)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, double[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, float f)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, float[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, int i)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, int[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, long l)
Writes logging output, with cyan foreground on the default background.
static boolean
cyan(QlLevel level, long[] ary)
Writes logging output, with cyan foreground on the default background.
static boolean
end()
static boolean
end(String msg)
static int
findStackStart(StackTraceElement[] stack)
protected static StackTraceElement[]
getStack(int depth)
static boolean
green(Object obj)
Writes logging output, with green foreground on the default background.
static boolean
green(Object[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(String msg)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, Object obj)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, Object[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, byte b)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, byte[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, char c)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, char[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, double d)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, double[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, float f)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, float[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, int i)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, int[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, long l)
Writes logging output, with green foreground on the default background.
static boolean
green(String name, long[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(byte b)
Writes logging output, with green foreground on the default background.
static boolean
green(byte[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(char c)
Writes logging output, with green foreground on the default background.
static boolean
green(char[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(double d)
Writes logging output, with green foreground on the default background.
static boolean
green(double[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(float f)
Writes logging output, with green foreground on the default background.
static boolean
green(float[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(int i)
Writes logging output, with green foreground on the default background.
static boolean
green(int[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(long l)
Writes logging output, with green foreground on the default background.
static boolean
green(long[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, Object obj)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, Object[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String msg)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, Object obj)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, Object[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, byte b)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, byte[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, char c)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, char[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, double d)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, double[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, float f)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, float[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, int i)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, int[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, long l)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, String name, long[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, byte b)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, byte[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, char c)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, char[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, double d)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, double[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, float f)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, float[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, int i)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, int[] ary)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, long l)
Writes logging output, with green foreground on the default background.
static boolean
green(QlLevel level, long[] ary)
Writes logging output, with green foreground on the default background.
static boolean
isLoggable(QlLevel level)
static boolean
log()
Writes an empty log message.
static boolean
log(Object obj)
Writes logging output, with the default foreground and background.
static boolean
log(Object[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(String msg)
Writes logging output, with the default foreground and background.
static boolean
log(String name, Object obj)
Writes logging output, with the default foreground and background.
static boolean
log(String name, Object[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(String name, byte b)
Writes logging output, with the default foreground and background.
static boolean
log(String name, byte[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(String name, char c)
Writes logging output, with the default foreground and background.
static boolean
log(String name, char[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(String name, double d)
Writes logging output, with the default foreground and background.
static boolean
log(String name, double[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(String name, float f)
Writes logging output, with the default foreground and background.
static boolean
log(String name, float[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(String name, int i)
Writes logging output, with the default foreground and background.
static boolean
log(String name, int[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(String name, long l)
Writes logging output, with the default foreground and background.
static boolean
log(String name, long[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(byte b)
Writes logging output, with the default foreground and background.
static boolean
log(byte[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(char c)
Writes logging output, with the default foreground and background.
static boolean
log(char[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(double d)
Writes logging output, with the default foreground and background.
static boolean
log(double[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(float f)
Writes logging output, with the default foreground and background.
static boolean
log(float[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(int i)
Writes logging output, with the default foreground and background.
static boolean
log(int[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(long l)
Writes logging output, with the default foreground and background.
static boolean
log(long[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(ANSIColor color, Object obj)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, Object[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String msg)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, Object obj)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, Object[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, byte b)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, byte[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, char c)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, char[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, double d)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, double[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, float f)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, float[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, int i)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, int[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, long l)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, String name, long[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, byte b)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, byte[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, char c)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, char[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, double d)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, double[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, float f)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, float[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, int i)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, int[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, long l)
Writes logging output, with the specified color.
static boolean
log(ANSIColor color, long[] ary)
Writes logging output, with the specified color.
static boolean
log(ANSIColor[] colors, Object obj)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, Object[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String msg)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, Object obj)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, Object[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, byte b)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, byte[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, char c)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, char[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, double d)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, double[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, float f)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, float[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, int i)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, int[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, long l)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, String name, long[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, byte b)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, byte[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, char c)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, char[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, double d)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, double[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, float f)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, float[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, int i)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, int[] ary)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, long l)
Writes logging output, with the specified colors.
static boolean
log(ANSIColor[] colors, long[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, Object obj)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, Object[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String msg)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, byte b)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, char c)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, double d)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, float f)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, int i)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, long l)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, byte b)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, byte[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, char c)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, char[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, double d)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, double[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, float f)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, float[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, int i)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, int[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, long l)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, long[] ary)
Writes logging output, with the default foreground and background.
static boolean
log(QlLevel level, ANSIColor color, Object obj)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, Object[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String msg)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, Object obj)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, Object[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, byte b)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, byte[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, char c)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, char[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, double d)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, double[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, float f)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, float[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, int i)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, int[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, long l)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, String name, long[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, byte b)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, byte[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, char c)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, char[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, double d)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, double[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, float f)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, float[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, int i)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, int[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, long l)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor color, long[] ary)
Writes logging output, with the specified color.
static boolean
log(QlLevel level, ANSIColor[] colors, Object obj)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, Object[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String msg)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, Object obj)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, Object[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, byte b)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, byte[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, char c)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, char[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, double d)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, double[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, float f)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, float[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, int i)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, int[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, long l)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, String name, long[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, byte b)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, byte[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, char c)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, char[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, double d)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, double[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, float f)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, float[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, int i)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, int[] ary)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, long l)
Writes logging output, with the specified colors.
static boolean
log(QlLevel level, ANSIColor[] colors, long[] ary)
Writes logging output, with the specified colors.
static boolean
magenta(Object obj)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(Object[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String msg)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, Object obj)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, Object[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, byte b)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, byte[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, char c)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, char[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, double d)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, double[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, float f)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, float[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, int i)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, int[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, long l)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(String name, long[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(byte b)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(byte[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(char c)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(char[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(double d)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(double[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(float f)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(float[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(int i)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(int[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(long l)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(long[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, Object obj)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, Object[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String msg)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, Object obj)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, Object[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, byte b)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, byte[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, char c)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, char[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, double d)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, double[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, float f)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, float[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, int i)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, int[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, long l)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, String name, long[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, byte b)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, byte[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, char c)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, char[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, double d)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, double[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, float f)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, float[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, int i)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, int[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, long l)
Writes logging output, with magenta foreground on the default background.
static boolean
magenta(QlLevel level, long[] ary)
Writes logging output, with magenta foreground on the default background.
static boolean
none(Object obj)
Writes logging output, with none foreground on the default background.
static boolean
none(Object[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(String msg)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, Object obj)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, Object[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, byte b)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, byte[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, char c)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, char[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, double d)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, double[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, float f)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, float[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, int i)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, int[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, long l)
Writes logging output, with none foreground on the default background.
static boolean
none(String name, long[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(byte b)
Writes logging output, with none foreground on the default background.
static boolean
none(byte[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(char c)
Writes logging output, with none foreground on the default background.
static boolean
none(char[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(double d)
Writes logging output, with none foreground on the default background.
static boolean
none(double[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(float f)
Writes logging output, with none foreground on the default background.
static boolean
none(float[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(int i)
Writes logging output, with none foreground on the default background.
static boolean
none(int[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(long l)
Writes logging output, with none foreground on the default background.
static boolean
none(long[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, Object obj)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, Object[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String msg)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, Object obj)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, Object[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, byte b)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, byte[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, char c)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, char[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, double d)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, double[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, float f)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, float[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, int i)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, int[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, long l)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, String name, long[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, byte b)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, byte[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, char c)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, char[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, double d)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, double[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, float f)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, float[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, int i)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, int[] ary)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, long l)
Writes logging output, with none foreground on the default background.
static boolean
none(QlLevel level, long[] ary)
Writes logging output, with none foreground on the default background.
static boolean
onBlack(Object obj)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(Object[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String msg)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, Object obj)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, Object[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, byte b)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, byte[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, char c)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, char[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, double d)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, double[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, float f)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, float[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, int i)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, int[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, long l)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(String name, long[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(byte b)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(byte[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(char c)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(char[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(double d)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(double[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(float f)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(float[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(int i)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(int[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(long l)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(long[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, Object obj)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String msg)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, byte b)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, char c)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, double d)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, float f)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, int i)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, long l)
Writes logging output, with the default foreground on a black background.
static boolean
onBlack(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a black background.
static boolean
onBlue(Object obj)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(Object[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String msg)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, Object obj)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, Object[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, byte b)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, byte[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, char c)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, char[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, double d)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, double[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, float f)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, float[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, int i)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, int[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, long l)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(String name, long[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(byte b)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(byte[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(char c)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(char[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(double d)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(double[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(float f)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(float[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(int i)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(int[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(long l)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(long[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, Object obj)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String msg)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, byte b)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, char c)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, double d)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, float f)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, int i)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, long l)
Writes logging output, with the default foreground on a blue background.
static boolean
onBlue(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a blue background.
static boolean
onCyan(Object obj)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String msg)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, Object obj)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, byte b)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, char c)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, char[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, double d)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, double[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, float f)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, float[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, int i)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, int[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, long l)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(String name, long[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(byte b)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(char c)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(char[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(double d)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(double[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(float f)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(float[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(int i)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(int[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(long l)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(long[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, Object obj)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String msg)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, byte b)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, char c)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, double d)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, float f)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, int i)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, long l)
Writes logging output, with the default foreground on a cyan background.
static boolean
onCyan(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a cyan background.
static boolean
onGreen(Object obj)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(Object[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String msg)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, Object obj)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, Object[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, byte b)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, byte[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, char c)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, char[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, double d)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, double[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, float f)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, float[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, int i)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, int[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, long l)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(String name, long[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(byte b)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(byte[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(char c)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(char[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(double d)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(double[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(float f)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(float[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(int i)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(int[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(long l)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(long[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, Object obj)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String msg)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, byte b)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, char c)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, double d)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, float f)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, int i)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, long l)
Writes logging output, with the default foreground on a green background.
static boolean
onGreen(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a green background.
static boolean
onMagenta(Object obj)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String msg)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, Object obj)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, byte b)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, char c)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, char[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, double d)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, double[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, float f)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, float[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, int i)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, int[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, long l)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(String name, long[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(byte b)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(char c)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(char[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(double d)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(double[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(float f)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(float[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(int i)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(int[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(long l)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(long[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, Object obj)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String msg)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, byte b)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, char c)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, double d)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, float f)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, int i)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, long l)
Writes logging output, with the default foreground on a magenta background.
static boolean
onMagenta(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a magenta background.
static boolean
onRed(Object obj)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(Object[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String msg)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, Object obj)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, Object[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, byte b)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, byte[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, char c)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, char[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, double d)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, double[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, float f)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, float[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, int i)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, int[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, long l)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(String name, long[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(byte b)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(byte[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(char c)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(char[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(double d)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(double[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(float f)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(float[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(int i)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(int[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(long l)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(long[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, Object obj)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String msg)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, byte b)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, char c)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, double d)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, float f)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, int i)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, long l)
Writes logging output, with the default foreground on a red background.
static boolean
onRed(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a red background.
static boolean
onWhite(Object obj)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(Object[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String msg)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, Object obj)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, Object[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, byte b)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, byte[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, char c)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, char[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, double d)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, double[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, float f)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, float[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, int i)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, int[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, long l)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(String name, long[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(byte b)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(byte[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(char c)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(char[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(double d)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(double[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(float f)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(float[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(int i)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(int[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(long l)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(long[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, Object obj)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String msg)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, byte b)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, char c)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, double d)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, float f)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, int i)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, long l)
Writes logging output, with the default foreground on a white background.
static boolean
onWhite(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a white background.
static boolean
onYellow(Object obj)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String msg)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, Object obj)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, byte b)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, char c)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, char[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, double d)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, double[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, float f)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, float[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, int i)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, int[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, long l)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(String name, long[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(byte b)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(char c)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(char[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(double d)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(double[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(float f)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(float[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(int i)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(int[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(long l)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(long[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, Object obj)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String msg)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, byte b)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, char c)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, double d)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, float f)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, int i)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, long l)
Writes logging output, with the default foreground on a yellow background.
static boolean
onYellow(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a yellow background.
static boolean
red(Object obj)
Writes logging output, with red foreground on the default background.
static boolean
red(Object[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(String msg)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, Object obj)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, Object[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, byte b)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, byte[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, char c)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, char[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, double d)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, double[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, float f)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, float[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, int i)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, int[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, long l)
Writes logging output, with red foreground on the default background.
static boolean
red(String name, long[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(byte b)
Writes logging output, with red foreground on the default background.
static boolean
red(byte[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(char c)
Writes logging output, with red foreground on the default background.
static boolean
red(char[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(double d)
Writes logging output, with red foreground on the default background.
static boolean
red(double[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(float f)
Writes logging output, with red foreground on the default background.
static boolean
red(float[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(int i)
Writes logging output, with red foreground on the default background.
static boolean
red(int[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(long l)
Writes logging output, with red foreground on the default background.
static boolean
red(long[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, Object obj)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, Object[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String msg)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, Object obj)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, Object[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, byte b)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, byte[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, char c)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, char[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, double d)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, double[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, float f)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, float[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, int i)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, int[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, long l)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, String name, long[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, byte b)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, byte[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, char c)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, char[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, double d)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, double[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, float f)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, float[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, int i)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, int[] ary)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, long l)
Writes logging output, with red foreground on the default background.
static boolean
red(QlLevel level, long[] ary)
Writes logging output, with red foreground on the default background.
static void
reset()
static boolean
reverse(Object obj)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(Object[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String msg)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, Object obj)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, Object[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, byte b)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, byte[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, char c)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, char[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, double d)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, double[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, float f)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, float[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, int i)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, int[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, long l)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(String name, long[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(byte b)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(byte[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(char c)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(char[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(double d)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(double[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(float f)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(float[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(int i)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(int[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(long l)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(long[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, Object obj)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, Object[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String msg)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, Object obj)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, Object[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, byte b)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, byte[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, char c)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, char[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, double d)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, double[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, float f)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, float[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, int i)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, int[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, long l)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, String name, long[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, byte b)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, byte[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, char c)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, char[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, double d)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, double[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, float f)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, float[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, int i)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, int[] ary)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, long l)
Writes logging output, with reverse foreground on the default background.
static boolean
reverse(QlLevel level, long[] ary)
Writes logging output, with reverse foreground on the default background.
static void
set(boolean columns, int fileWidth, int lineWidth, int classWidth, int funcWidth)
static void
setClassColor(String className, ANSIColor color)
static void
setClassColor(ANSIColor color)
static void
setClassWidth(int classWidth)
static void
setColumns(boolean cols)
static void
setDisabled(Class cls)
static void
setFileColor(String fileName, ANSIColor color)
static void
setFileColor(ANSIColor color)
static void
setFileWidth(int fileWidth)
static void
setFunctionWidth(int functionWidth)
static void
setLineWidth(int lineWidth)
static void
setMethodColor(String className, String methodName, ANSIColor color)
static void
setMethodColor(String methodName, ANSIColor color)
static void
setOut(PrintWriter out)
static void
setOutput(int type, QlLevel level)
static void
setPackageColor(String pkg, ANSIColor color)
static void
setPackageColor(ANSIColor color)
static void
setQuiet(boolean quiet)
static void
setQuiet(QlLevel level)
static void
setVerbose(boolean verbose)
static boolean
stack()
Writes an empty stack message.
static boolean
stack(Object obj)
Writes stack output, with the default foreground and background.
static boolean
stack(Object obj, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(Object[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String msg)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, Object obj)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, Object obj, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, Object[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, byte b)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, byte b, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, byte[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, char c)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, char c, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, char[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, char[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, double d)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, double d, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, double[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, double[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, float f)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, float f, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, float[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, float[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, int i)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, int i, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, int[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, int[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, long l)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, long l, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, long[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(String name, long[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(byte b)
Writes stack output, with the default foreground and background.
static boolean
stack(byte b, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(byte[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(char c)
Writes stack output, with the default foreground and background.
static boolean
stack(char c, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(char[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(char[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(double d)
Writes stack output, with the default foreground and background.
static boolean
stack(double d, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(double[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(double[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(float f)
Writes stack output, with the default foreground and background.
static boolean
stack(float f, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(float[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(float[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(int i)
Writes stack output, with the default foreground and background.
static boolean
stack(int i, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(int[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(int[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(long l)
Writes stack output, with the default foreground and background.
static boolean
stack(long l, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(long[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(long[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(ANSIColor color, Object obj)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, Object obj, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, Object[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, Object[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String msg)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, Object obj)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, Object obj, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, Object[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, Object[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, byte b)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, byte b, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, byte[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, byte[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, char c)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, char c, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, char[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, char[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, double d)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, double d, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, double[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, double[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, float f)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, float f, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, float[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, float[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, int i)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, int i, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, int[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, int[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, long l)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, long l, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, long[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, String name, long[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, byte b)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, byte b, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, byte[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, byte[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, char c)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, char c, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, char[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, char[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, double d)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, double d, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, double[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, double[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, float f)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, float f, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, float[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, float[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, int i)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, int i, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, int[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, int[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, long l)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, long l, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, long[] ary)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor color, long[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(ANSIColor[] colors, Object obj)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, Object obj, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, Object[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, Object[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String msg)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, Object obj)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, Object obj, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, Object[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, Object[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, byte b)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, byte b, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, byte[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, byte[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, char c)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, char c, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, char[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, char[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, double d)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, double d, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, double[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, double[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, float f)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, float f, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, float[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, float[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, int i)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, int i, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, int[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, int[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, long l)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, long l, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, long[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, String name, long[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] msgColors, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static boolean
stack(ANSIColor[] colors, byte b)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, byte b, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, byte[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, byte[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, char c)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, char c, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, char[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, char[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, double d)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, double d, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, double[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, double[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, float f)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, float f, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, float[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, float[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, int i)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, int i, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, int[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, int[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, long l)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, long l, int depth)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, long[] ary)
Writes stack output, with the specified colors.
static boolean
stack(ANSIColor[] colors, long[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, Object obj)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, Object obj, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, Object[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String msg)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, Object obj)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, Object obj, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, Object[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, byte b)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, byte b, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, byte[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, char c)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, char c, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, char[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, char[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, double d)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, double d, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, double[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, double[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, float f)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, float f, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, float[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, float[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, int i)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, int i, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, int[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, int[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, long l)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, long l, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, long[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, String name, long[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, byte b)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, byte b, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, byte[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, char c)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, char c, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, char[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, char[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, double d)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, double d, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, double[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, double[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, float f)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, float f, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, float[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, float[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, int i)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, int i, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, int[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, int[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, long l)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, long l, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, long[] ary)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, long[] ary, int depth)
Writes stack output, with the default foreground and background.
static boolean
stack(QlLevel level, ANSIColor color, Object obj)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, Object obj, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, Object[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, Object[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String msg)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, Object obj)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, Object obj, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, Object[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, Object[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, byte b)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, byte b, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, byte[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, byte[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, char c)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, char c, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, char[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, char[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, double d)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, double d, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, double[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, double[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, float f)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, float f, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, float[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, float[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, int i)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, int i, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, int[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, int[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, long l)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, long l, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, long[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, String name, long[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static boolean
stack(QlLevel level, ANSIColor color, byte b)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, byte b, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, byte[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, byte[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, char c)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, char c, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, char[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, char[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, double d)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, double d, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, double[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, double[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, float f)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, float f, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, float[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, float[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, int i)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, int i, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, int[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, int[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, long l)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, long l, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, long[] ary)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor color, long[] ary, int depth)
Writes stack output, with the specified color.
static boolean
stack(QlLevel level, ANSIColor[] colors, Object obj)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, Object obj, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, Object[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, Object[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String msg)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, Object obj)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, Object obj, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] msgColors, String name, Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, Object[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, Object[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, byte b)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, byte b, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, char c)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, char c, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, char[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, char[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, double d)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, double d, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, double[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, double[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, float f)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, float f, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, float[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, float[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, int i)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, int i, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, int[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, int[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, long l)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, long l, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, long[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, String name, long[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel lvl, ANSIColor[] msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static boolean
stack(QlLevel level, ANSIColor[] colors, byte b)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, byte b, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, byte[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, byte[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, char c)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, char c, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, char[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, char[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, double d)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, double d, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, double[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, double[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, float f)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, float f, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, float[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, float[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, int i)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, int i, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, int[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, int[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, long l)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, long l, int depth)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, long[] ary)
Writes stack output, with the specified colors.
static boolean
stack(QlLevel level, ANSIColor[] colors, long[] ary, int depth)
Writes stack output, with the specified colors.
static boolean
start()
static boolean
start(String msg)
static boolean
time()
static boolean
time(String msg)
static boolean
underline(Object obj)
Writes logging output, with underline foreground on the default background.
static boolean
underline(Object[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String msg)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, Object obj)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, Object[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, byte b)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, byte[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, char c)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, char[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, double d)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, double[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, float f)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, float[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, int i)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, int[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, long l)
Writes logging output, with underline foreground on the default background.
static boolean
underline(String name, long[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(byte b)
Writes logging output, with underline foreground on the default background.
static boolean
underline(byte[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(char c)
Writes logging output, with underline foreground on the default background.
static boolean
underline(char[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(double d)
Writes logging output, with underline foreground on the default background.
static boolean
underline(double[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(float f)
Writes logging output, with underline foreground on the default background.
static boolean
underline(float[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(int i)
Writes logging output, with underline foreground on the default background.
static boolean
underline(int[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(long l)
Writes logging output, with underline foreground on the default background.
static boolean
underline(long[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, Object obj)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, Object[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String msg)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, Object obj)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, Object[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, byte b)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, byte[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, char c)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, char[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, double d)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, double[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, float f)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, float[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, int i)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, int[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, long l)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, String name, long[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, byte b)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, byte[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, char c)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, char[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, double d)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, double[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, float f)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, float[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, int i)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, int[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, long l)
Writes logging output, with underline foreground on the default background.
static boolean
underline(QlLevel level, long[] ary)
Writes logging output, with underline foreground on the default background.
static boolean
underscore(Object obj)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(Object[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String msg)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, Object obj)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, Object[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, byte b)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, byte[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, char c)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, char[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, double d)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, double[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, float f)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, float[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, int i)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, int[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, long l)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(String name, long[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(byte b)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(byte[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(char c)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(char[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(double d)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(double[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(float f)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(float[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(int i)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(int[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(long l)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(long[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, Object obj)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, Object[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String msg)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, Object obj)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, Object[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, byte b)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, byte[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, char c)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, char[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, double d)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, double[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, float f)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, float[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, int i)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, int[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, long l)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, String name, long[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, byte b)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, byte[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, char c)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, char[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, double d)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, double[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, float f)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, float[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, int i)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, int[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, long l)
Writes logging output, with underscore foreground on the default background.
static boolean
underscore(QlLevel level, long[] ary)
Writes logging output, with underscore foreground on the default background.
static boolean
verbose()
static boolean
white(Object obj)
Writes logging output, with white foreground on the default background.
static boolean
white(Object[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(String msg)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, Object obj)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, Object[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, byte b)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, byte[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, char c)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, char[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, double d)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, double[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, float f)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, float[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, int i)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, int[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, long l)
Writes logging output, with white foreground on the default background.
static boolean
white(String name, long[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(byte b)
Writes logging output, with white foreground on the default background.
static boolean
white(byte[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(char c)
Writes logging output, with white foreground on the default background.
static boolean
white(char[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(double d)
Writes logging output, with white foreground on the default background.
static boolean
white(double[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(float f)
Writes logging output, with white foreground on the default background.
static boolean
white(float[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(int i)
Writes logging output, with white foreground on the default background.
static boolean
white(int[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(long l)
Writes logging output, with white foreground on the default background.
static boolean
white(long[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, Object obj)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, Object[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String msg)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, Object obj)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, Object[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, byte b)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, byte[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, char c)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, char[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, double d)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, double[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, float f)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, float[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, int i)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, int[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, long l)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, String name, long[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, byte b)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, byte[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, char c)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, char[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, double d)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, double[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, float f)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, float[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, int i)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, int[] ary)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, long l)
Writes logging output, with white foreground on the default background.
static boolean
white(QlLevel level, long[] ary)
Writes logging output, with white foreground on the default background.
static boolean
yellow(Object obj)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(Object[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String msg)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, Object obj)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, Object[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, byte b)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, byte[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, char c)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, char[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, double d)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, double[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, float f)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, float[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, int i)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, int[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, long l)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(String name, long[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(byte b)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(byte[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(char c)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(char[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(double d)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(double[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(float f)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(float[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(int i)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(int[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(long l)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(long[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, Object obj)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, Object[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String msg)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, Object obj)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, Object[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, byte b)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, byte[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, char c)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, char[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, double d)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, double[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, float f)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, float[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, int i)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, int[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, long l)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, String name, long[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, byte b)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, byte[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, char c)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, char[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, double d)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, double[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, float f)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, float[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, int i)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, int[] ary)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, long l)
Writes logging output, with yellow foreground on the default background.
static boolean
yellow(QlLevel level, long[] ary)
Writes logging output, with yellow foreground on the default background.

Field Details

BLACK

public static final ANSIColor BLACK
The code for black text.

BLINK

public static final ANSIColor BLINK
The code for the blink attribute.

BLUE

public static final ANSIColor BLUE
The code for blue text.

BOLD

public static final ANSIColor BOLD
The code for bold decoration.

CLASS_WIDTH_PROPERTY_KEY

public static final String CLASS_WIDTH_PROPERTY_KEY

COLUMNAR_PROPERTY_KEY

public static final String COLUMNAR_PROPERTY_KEY

CONCEALED

public static final ANSIColor CONCEALED
The code for hidden text.

CYAN

public static final ANSIColor CYAN
The code for cyan text.

DEFAULT_STACK_DEPTH

protected static final int DEFAULT_STACK_DEPTH
The default number of stack trace elements to display in a stack.
Field Value:
5

FILE_WIDTH_PROPERTY_KEY

public static final String FILE_WIDTH_PROPERTY_KEY

GREEN

public static final ANSIColor GREEN
The code for green text.

LEVEL0

public static final QlLevel LEVEL0

LEVEL1

public static final QlLevel LEVEL1

LEVEL2

public static final QlLevel LEVEL2

LEVEL3

public static final QlLevel LEVEL3

LEVEL4

public static final QlLevel LEVEL4

LEVEL5

public static final QlLevel LEVEL5

LEVEL6

public static final QlLevel LEVEL6

LEVEL7

public static final QlLevel LEVEL7

LEVEL8

public static final QlLevel LEVEL8

LEVEL9

public static final QlLevel LEVEL9

LEVEL_PROPERTY_KEY

public static final String LEVEL_PROPERTY_KEY

LINE_WIDTH_PROPERTY_KEY

public static final String LINE_WIDTH_PROPERTY_KEY

MAGENTA

public static final ANSIColor MAGENTA
The code for magenta text.

METHOD_WIDTH_PROPERTY_KEY

public static final String METHOD_WIDTH_PROPERTY_KEY

NONE

public static final ANSIColor NONE
The code for no color applied.

NO_COLOR

public static final ANSIColor NO_COLOR
An object denoting no color.

NO_COLORS

public static final ANSIColor[] NO_COLORS
An array denoting no colors.

NO_OUTPUT

public static final int NO_OUTPUT
Field Value:
0

ON_BLACK

public static final ANSIColor ON_BLACK
The code for black background.

ON_BLUE

public static final ANSIColor ON_BLUE
The code for blue background.

ON_CYAN

public static final ANSIColor ON_CYAN
The code for cyan background.

ON_GREEN

public static final ANSIColor ON_GREEN
The code for green background.

ON_MAGENTA

public static final ANSIColor ON_MAGENTA
The code for magenta background.

ON_RED

public static final ANSIColor ON_RED
The code for red background.

ON_WHITE

public static final ANSIColor ON_WHITE
The code for white background.

ON_YELLOW

public static final ANSIColor ON_YELLOW
The code for yellow background.

QUIET

public static final int QUIET
Field Value:
1

RED

public static final ANSIColor RED
The code for red text.

RESET

public static final ANSIColor RESET
The code for reset of colors and decorations.

REVERSE

public static final ANSIColor REVERSE
The code for reversed text.

SHOW_CLASSES_PROPERTY_KEY

public static final String SHOW_CLASSES_PROPERTY_KEY

SHOW_FILES_PROPERTY_KEY

public static final String SHOW_FILES_PROPERTY_KEY

UNDERLINE

public static final ANSIColor UNDERLINE
The code for underline (AKA underscore).

UNDERSCORE

public static final ANSIColor UNDERSCORE
The code for underscore (AKA underline).

VERBOSE

public static final int VERBOSE
Field Value:
2

VERBOSE_PROPERTY_KEY

public static final String VERBOSE_PROPERTY_KEY

VERSION

public static final String VERSION
The version of the Qualog module.

WHITE

public static final ANSIColor WHITE
The code for white text.

YELLOW

public static final ANSIColor YELLOW
The code for yellow text.

timer

protected static QlTimer timer

writer

protected static QlWriter writer

Method Details

addClassSkipped

public static void addClassSkipped(Class cls)

addClassSkipped

public static void addClassSkipped(String clsName)

addFilter

public static void addFilter(QlFilter filter)

black

public static boolean black(Object obj)
Writes logging output, with black foreground on the default background.

black

public static boolean black(Object[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String msg)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            Object obj)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            Object[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            byte b)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            byte[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            char c)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            char[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            double d)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            double[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            float f)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            float[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            int i)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            int[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            long l)
Writes logging output, with black foreground on the default background.

black

public static boolean black(String name,
                            long[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(byte b)
Writes logging output, with black foreground on the default background.

black

public static boolean black(byte[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(char c)
Writes logging output, with black foreground on the default background.

black

public static boolean black(char[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(double d)
Writes logging output, with black foreground on the default background.

black

public static boolean black(double[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(float f)
Writes logging output, with black foreground on the default background.

black

public static boolean black(float[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(int i)
Writes logging output, with black foreground on the default background.

black

public static boolean black(int[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(long l)
Writes logging output, with black foreground on the default background.

black

public static boolean black(long[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            Object obj)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            Object[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String msg)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            Object obj)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            Object[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            byte b)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            byte[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            char c)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            char[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            double d)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            double[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            float f)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            float[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            int i)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            int[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            long l)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            String name,
                            long[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            byte b)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            byte[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            char c)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            char[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            double d)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            double[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            float f)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            float[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            int i)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            int[] ary)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            long l)
Writes logging output, with black foreground on the default background.

black

public static boolean black(QlLevel level,
                            long[] ary)
Writes logging output, with black foreground on the default background.

blink

public static boolean blink(Object obj)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(Object[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String msg)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            Object obj)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            Object[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            byte b)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            byte[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            char c)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            char[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            double d)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            double[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            float f)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            float[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            int i)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            int[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            long l)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(String name,
                            long[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(byte b)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(byte[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(char c)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(char[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(double d)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(double[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(float f)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(float[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(int i)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(int[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(long l)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(long[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            Object obj)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            Object[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String msg)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            Object obj)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            Object[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            byte b)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            byte[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            char c)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            char[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            double d)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            double[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            float f)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            float[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            int i)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            int[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            long l)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            String name,
                            long[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            byte b)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            byte[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            char c)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            char[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            double d)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            double[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            float f)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            float[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            int i)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            int[] ary)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            long l)
Writes logging output, with blink foreground on the default background.

blink

public static boolean blink(QlLevel level,
                            long[] ary)
Writes logging output, with blink foreground on the default background.

blue

public static boolean blue(Object obj)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(Object[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String msg)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           Object obj)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           Object[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           byte b)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           byte[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           char c)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           char[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           double d)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           double[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           float f)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           float[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           int i)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           int[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           long l)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(String name,
                           long[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(byte b)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(byte[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(char c)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(char[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(double d)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(double[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(float f)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(float[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(int i)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(int[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(long l)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(long[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           Object obj)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           Object[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String msg)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           Object obj)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           Object[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           byte b)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           byte[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           char c)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           char[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           double d)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           double[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           float f)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           float[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           int i)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           int[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           long l)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           String name,
                           long[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           byte b)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           byte[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           char c)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           char[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           double d)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           double[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           float f)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           float[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           int i)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           int[] ary)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           long l)
Writes logging output, with blue foreground on the default background.

blue

public static boolean blue(QlLevel level,
                           long[] ary)
Writes logging output, with blue foreground on the default background.

bold

public static boolean bold(Object obj)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(Object[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String msg)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           Object obj)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           Object[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           byte b)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           byte[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           char c)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           char[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           double d)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           double[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           float f)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           float[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           int i)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           int[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           long l)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(String name,
                           long[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(byte b)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(byte[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(char c)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(char[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(double d)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(double[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(float f)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(float[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(int i)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(int[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(long l)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(long[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           Object obj)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           Object[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String msg)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           Object obj)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           Object[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           byte b)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           byte[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           char c)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           char[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           double d)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           double[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           float f)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           float[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           int i)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           int[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           long l)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           String name,
                           long[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           byte b)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           byte[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           char c)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           char[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           double d)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           double[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           float f)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           float[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           int i)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           int[] ary)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           long l)
Writes logging output, with bold foreground on the default background.

bold

public static boolean bold(QlLevel level,
                           long[] ary)
Writes logging output, with bold foreground on the default background.

clear

public static void clear()

clearClassColor

public static void clearClassColor(String className)

concealed

public static boolean concealed(Object obj)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(Object[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String msg)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                Object obj)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                Object[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                byte b)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                byte[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                char c)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                char[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                double d)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                double[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                float f)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                float[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                int i)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                int[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                long l)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(String name,
                                long[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(byte b)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(byte[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(char c)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(char[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(double d)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(double[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(float f)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(float[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(int i)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(int[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(long l)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(long[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                Object obj)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                Object[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String msg)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                Object obj)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                Object[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                byte b)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                byte[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                char c)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                char[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                double d)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                double[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                float f)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                float[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                int i)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                int[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                long l)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                String name,
                                long[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                byte b)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                byte[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                char c)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                char[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                double d)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                double[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                float f)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                float[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                int i)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                int[] ary)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                long l)
Writes logging output, with concealed foreground on the default background.

concealed

public static boolean concealed(QlLevel level,
                                long[] ary)
Writes logging output, with concealed foreground on the default background.

cyan

public static boolean cyan(Object obj)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(Object[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String msg)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           Object obj)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           Object[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           byte b)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           byte[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           char c)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           char[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           double d)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           double[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           float f)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           float[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           int i)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           int[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           long l)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(String name,
                           long[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(byte b)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(byte[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(char c)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(char[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(double d)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(double[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(float f)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(float[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(int i)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(int[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(long l)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(long[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           Object obj)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           Object[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String msg)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           Object obj)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           Object[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           byte b)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           byte[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           char c)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           char[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           double d)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           double[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           float f)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           float[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           int i)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           int[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           long l)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           String name,
                           long[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           byte b)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           byte[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           char c)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           char[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           double d)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           double[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           float f)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           float[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           int i)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           int[] ary)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           long l)
Writes logging output, with cyan foreground on the default background.

cyan

public static boolean cyan(QlLevel level,
                           long[] ary)
Writes logging output, with cyan foreground on the default background.

end

public static boolean end()

end

public static boolean end(String msg)

findStackStart

public static int findStackStart(StackTraceElement[] stack)

getStack

protected static StackTraceElement[] getStack(int depth)

green

public static boolean green(Object obj)
Writes logging output, with green foreground on the default background.

green

public static boolean green(Object[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String msg)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            Object obj)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            Object[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            byte b)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            byte[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            char c)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            char[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            double d)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            double[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            float f)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            float[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            int i)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            int[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            long l)
Writes logging output, with green foreground on the default background.

green

public static boolean green(String name,
                            long[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(byte b)
Writes logging output, with green foreground on the default background.

green

public static boolean green(byte[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(char c)
Writes logging output, with green foreground on the default background.

green

public static boolean green(char[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(double d)
Writes logging output, with green foreground on the default background.

green

public static boolean green(double[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(float f)
Writes logging output, with green foreground on the default background.

green

public static boolean green(float[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(int i)
Writes logging output, with green foreground on the default background.

green

public static boolean green(int[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(long l)
Writes logging output, with green foreground on the default background.

green

public static boolean green(long[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            Object obj)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            Object[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String msg)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            Object obj)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            Object[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            byte b)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            byte[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            char c)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            char[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            double d)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            double[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            float f)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            float[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            int i)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            int[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            long l)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            String name,
                            long[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            byte b)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            byte[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            char c)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            char[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            double d)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            double[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            float f)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            float[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            int i)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            int[] ary)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            long l)
Writes logging output, with green foreground on the default background.

green

public static boolean green(QlLevel level,
                            long[] ary)
Writes logging output, with green foreground on the default background.

isLoggable

public static boolean isLoggable(QlLevel level)

log

public static boolean log()
Writes an empty log message.

log

public static boolean log(Object obj)
Writes logging output, with the default foreground and background.

log

public static boolean log(Object[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(String msg)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          Object obj)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          Object[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          byte b)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          byte[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          char c)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          char[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          double d)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          double[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          float f)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          float[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          int i)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          int[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          long l)
Writes logging output, with the default foreground and background.

log

public static boolean log(String name,
                          long[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(byte b)
Writes logging output, with the default foreground and background.

log

public static boolean log(byte[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(char c)
Writes logging output, with the default foreground and background.

log

public static boolean log(char[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(double d)
Writes logging output, with the default foreground and background.

log

public static boolean log(double[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(float f)
Writes logging output, with the default foreground and background.

log

public static boolean log(float[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(int i)
Writes logging output, with the default foreground and background.

log

public static boolean log(int[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(long l)
Writes logging output, with the default foreground and background.

log

public static boolean log(long[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(ANSIColor color,
                          Object obj)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          Object[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String msg)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          Object obj)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          Object[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          byte b)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          byte[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          char c)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          char[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          double d)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          double[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          float f)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          float[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          int i)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          int[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          long l)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          String name,
                          long[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          byte b)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          byte[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          char c)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          char[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          double d)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          double[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          float f)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          float[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          int i)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          int[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          long l)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor color,
                          long[] ary)
Writes logging output, with the specified color.

log

public static boolean log(ANSIColor[] colors,
                          Object obj)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          Object[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String msg)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          Object obj)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          Object[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          byte b)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          byte[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          char c)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          char[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          double d)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          double[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          float f)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          float[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          int i)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          int[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          long l)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          String name,
                          long[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          byte b)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          byte[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          char c)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          char[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          double d)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          double[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          float f)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          float[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          int i)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          int[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          long l)
Writes logging output, with the specified colors.

log

public static boolean log(ANSIColor[] colors,
                          long[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          Object obj)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          Object[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String msg)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          Object obj)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          Object[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          byte b)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          byte[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          char c)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          char[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          double d)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          double[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          float f)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          float[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          int i)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          int[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          long l)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          String name,
                          long[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          byte b)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          byte[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          char c)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          char[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          double d)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          double[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          float f)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          float[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          int i)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          int[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          long l)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          long[] ary)
Writes logging output, with the default foreground and background.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          Object obj)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          Object[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String msg)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          Object obj)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          Object[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          byte b)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          byte[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          char c)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          char[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          double d)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          double[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          float f)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          float[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          int i)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          int[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          long l)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          String name,
                          long[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          byte b)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          byte[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          char c)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          char[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          double d)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          double[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          float f)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          float[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          int i)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          int[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          long l)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor color,
                          long[] ary)
Writes logging output, with the specified color.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          Object obj)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          Object[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String msg)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          Object obj)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          Object[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          byte b)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          byte[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          char c)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          char[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          double d)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          double[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          float f)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          float[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          int i)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          int[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          long l)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          String name,
                          long[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          byte b)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          byte[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          char c)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          char[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          double d)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          double[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          float f)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          float[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          int i)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          int[] ary)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          long l)
Writes logging output, with the specified colors.

log

public static boolean log(QlLevel level,
                          ANSIColor[] colors,
                          long[] ary)
Writes logging output, with the specified colors.

magenta

public static boolean magenta(Object obj)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(Object[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String msg)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              Object obj)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              Object[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              byte b)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              byte[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              char c)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              char[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              double d)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              double[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              float f)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              float[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              int i)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              int[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              long l)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(String name,
                              long[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(byte b)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(byte[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(char c)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(char[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(double d)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(double[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(float f)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(float[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(int i)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(int[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(long l)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(long[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              Object obj)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              Object[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String msg)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              Object obj)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              Object[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              byte b)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              byte[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              char c)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              char[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              double d)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              double[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              float f)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              float[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              int i)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              int[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              long l)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              String name,
                              long[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              byte b)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              byte[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              char c)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              char[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              double d)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              double[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              float f)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              float[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              int i)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              int[] ary)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              long l)
Writes logging output, with magenta foreground on the default background.

magenta

public static boolean magenta(QlLevel level,
                              long[] ary)
Writes logging output, with magenta foreground on the default background.

none

public static boolean none(Object obj)
Writes logging output, with none foreground on the default background.

none

public static boolean none(Object[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String msg)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           Object obj)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           Object[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           byte b)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           byte[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           char c)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           char[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           double d)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           double[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           float f)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           float[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           int i)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           int[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           long l)
Writes logging output, with none foreground on the default background.

none

public static boolean none(String name,
                           long[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(byte b)
Writes logging output, with none foreground on the default background.

none

public static boolean none(byte[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(char c)
Writes logging output, with none foreground on the default background.

none

public static boolean none(char[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(double d)
Writes logging output, with none foreground on the default background.

none

public static boolean none(double[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(float f)
Writes logging output, with none foreground on the default background.

none

public static boolean none(float[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(int i)
Writes logging output, with none foreground on the default background.

none

public static boolean none(int[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(long l)
Writes logging output, with none foreground on the default background.

none

public static boolean none(long[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           Object obj)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           Object[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String msg)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           Object obj)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           Object[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           byte b)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           byte[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           char c)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           char[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           double d)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           double[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           float f)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           float[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           int i)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           int[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           long l)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           String name,
                           long[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           byte b)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           byte[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           char c)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           char[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           double d)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           double[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           float f)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           float[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           int i)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           int[] ary)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           long l)
Writes logging output, with none foreground on the default background.

none

public static boolean none(QlLevel level,
                           long[] ary)
Writes logging output, with none foreground on the default background.

onBlack

public static boolean onBlack(Object obj)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(Object[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String msg)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              Object obj)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              Object[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              byte b)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              byte[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              char c)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              char[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              double d)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              double[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              float f)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              float[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              int i)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              int[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              long l)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(String name,
                              long[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(byte b)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(byte[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(char c)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(char[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(double d)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(double[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(float f)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(float[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(int i)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(int[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(long l)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(long[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              Object obj)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              Object[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String msg)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              Object obj)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              Object[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              byte b)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              byte[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              char c)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              char[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              double d)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              double[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              float f)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              float[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              int i)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              int[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              long l)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              String name,
                              long[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              byte b)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              byte[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              char c)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              char[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              double d)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              double[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              float f)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              float[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              int i)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              int[] ary)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              long l)
Writes logging output, with the default foreground on a black background.

onBlack

public static boolean onBlack(QlLevel level,
                              long[] ary)
Writes logging output, with the default foreground on a black background.

onBlue

public static boolean onBlue(Object obj)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(Object[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String msg)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             Object obj)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             Object[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             byte b)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             byte[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             char c)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             char[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             double d)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             double[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             float f)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             float[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             int i)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             int[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             long l)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(String name,
                             long[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(byte b)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(byte[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(char c)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(char[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(double d)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(double[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(float f)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(float[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(int i)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(int[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(long l)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(long[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             Object obj)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             Object[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String msg)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             Object obj)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             Object[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             byte b)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             byte[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             char c)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             char[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             double d)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             double[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             float f)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             float[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             int i)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             int[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             long l)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             String name,
                             long[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             byte b)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             byte[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             char c)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             char[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             double d)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             double[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             float f)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             float[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             int i)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             int[] ary)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             long l)
Writes logging output, with the default foreground on a blue background.

onBlue

public static boolean onBlue(QlLevel level,
                             long[] ary)
Writes logging output, with the default foreground on a blue background.

onCyan

public static boolean onCyan(Object obj)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(Object[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String msg)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             Object obj)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             Object[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             byte b)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             byte[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             char c)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             char[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             double d)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             double[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             float f)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             float[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             int i)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             int[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             long l)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(String name,
                             long[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(byte b)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(byte[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(char c)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(char[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(double d)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(double[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(float f)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(float[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(int i)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(int[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(long l)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(long[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             Object obj)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             Object[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String msg)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             Object obj)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             Object[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             byte b)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             byte[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             char c)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             char[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             double d)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             double[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             float f)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             float[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             int i)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             int[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             long l)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             String name,
                             long[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             byte b)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             byte[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             char c)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             char[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             double d)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             double[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             float f)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             float[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             int i)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             int[] ary)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             long l)
Writes logging output, with the default foreground on a cyan background.

onCyan

public static boolean onCyan(QlLevel level,
                             long[] ary)
Writes logging output, with the default foreground on a cyan background.

onGreen

public static boolean onGreen(Object obj)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(Object[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String msg)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              Object obj)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              Object[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              byte b)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              byte[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              char c)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              char[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              double d)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              double[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              float f)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              float[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              int i)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              int[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              long l)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(String name,
                              long[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(byte b)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(byte[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(char c)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(char[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(double d)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(double[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(float f)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(float[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(int i)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(int[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(long l)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(long[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              Object obj)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              Object[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String msg)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              Object obj)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              Object[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              byte b)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              byte[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              char c)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              char[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              double d)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              double[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              float f)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              float[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              int i)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              int[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              long l)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              String name,
                              long[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              byte b)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              byte[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              char c)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              char[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              double d)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              double[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              float f)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              float[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              int i)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              int[] ary)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              long l)
Writes logging output, with the default foreground on a green background.

onGreen

public static boolean onGreen(QlLevel level,
                              long[] ary)
Writes logging output, with the default foreground on a green background.

onMagenta

public static boolean onMagenta(Object obj)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(Object[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String msg)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                Object obj)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                Object[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                byte b)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                byte[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                char c)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                char[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                double d)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                double[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                float f)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                float[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                int i)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                int[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                long l)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(String name,
                                long[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(byte b)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(byte[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(char c)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(char[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(double d)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(double[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(float f)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(float[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(int i)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(int[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(long l)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(long[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                Object obj)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                Object[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String msg)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                Object obj)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                Object[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                byte b)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                byte[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                char c)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                char[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                double d)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                double[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                float f)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                float[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                int i)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                int[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                long l)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                String name,
                                long[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                byte b)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                byte[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                char c)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                char[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                double d)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                double[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                float f)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                float[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                int i)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                int[] ary)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                long l)
Writes logging output, with the default foreground on a magenta background.

onMagenta

public static boolean onMagenta(QlLevel level,
                                long[] ary)
Writes logging output, with the default foreground on a magenta background.

onRed

public static boolean onRed(Object obj)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(Object[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String msg)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            Object obj)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            Object[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            byte b)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            byte[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            char c)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            char[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            double d)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            double[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            float f)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            float[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            int i)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            int[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            long l)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(String name,
                            long[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(byte b)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(byte[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(char c)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(char[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(double d)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(double[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(float f)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(float[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(int i)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(int[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(long l)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(long[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            Object obj)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            Object[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String msg)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            Object obj)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            Object[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            byte b)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            byte[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            char c)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            char[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            double d)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            double[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            float f)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            float[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            int i)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            int[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            long l)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            String name,
                            long[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            byte b)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            byte[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            char c)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            char[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            double d)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            double[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            float f)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            float[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            int i)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            int[] ary)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            long l)
Writes logging output, with the default foreground on a red background.

onRed

public static boolean onRed(QlLevel level,
                            long[] ary)
Writes logging output, with the default foreground on a red background.

onWhite

public static boolean onWhite(Object obj)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(Object[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String msg)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              Object obj)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              Object[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              byte b)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              byte[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              char c)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              char[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              double d)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              double[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              float f)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              float[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              int i)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              int[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              long l)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(String name,
                              long[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(byte b)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(byte[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(char c)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(char[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(double d)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(double[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(float f)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(float[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(int i)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(int[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(long l)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(long[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              Object obj)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              Object[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String msg)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              Object obj)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              Object[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              byte b)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              byte[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              char c)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              char[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              double d)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              double[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              float f)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              float[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              int i)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              int[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              long l)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              String name,
                              long[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              byte b)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              byte[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              char c)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              char[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              double d)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              double[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              float f)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              float[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              int i)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              int[] ary)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              long l)
Writes logging output, with the default foreground on a white background.

onWhite

public static boolean onWhite(QlLevel level,
                              long[] ary)
Writes logging output, with the default foreground on a white background.

onYellow

public static boolean onYellow(Object obj)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(Object[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String msg)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               Object obj)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               Object[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               byte b)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               byte[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               char c)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               char[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               double d)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               double[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               float f)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               float[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               int i)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               int[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               long l)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(String name,
                               long[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(byte b)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(byte[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(char c)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(char[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(double d)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(double[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(float f)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(float[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(int i)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(int[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(long l)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(long[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               Object obj)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               Object[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String msg)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               Object obj)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               Object[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               byte b)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               byte[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               char c)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               char[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               double d)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               double[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               float f)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               float[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               int i)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               int[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               long l)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               String name,
                               long[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               byte b)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               byte[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               char c)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               char[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               double d)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               double[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               float f)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               float[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               int i)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               int[] ary)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               long l)
Writes logging output, with the default foreground on a yellow background.

onYellow

public static boolean onYellow(QlLevel level,
                               long[] ary)
Writes logging output, with the default foreground on a yellow background.

red

public static boolean red(Object obj)
Writes logging output, with red foreground on the default background.

red

public static boolean red(Object[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String msg)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          Object obj)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          Object[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          byte b)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          byte[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          char c)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          char[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          double d)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          double[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          float f)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          float[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          int i)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          int[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          long l)
Writes logging output, with red foreground on the default background.

red

public static boolean red(String name,
                          long[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(byte b)
Writes logging output, with red foreground on the default background.

red

public static boolean red(byte[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(char c)
Writes logging output, with red foreground on the default background.

red

public static boolean red(char[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(double d)
Writes logging output, with red foreground on the default background.

red

public static boolean red(double[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(float f)
Writes logging output, with red foreground on the default background.

red

public static boolean red(float[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(int i)
Writes logging output, with red foreground on the default background.

red

public static boolean red(int[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(long l)
Writes logging output, with red foreground on the default background.

red

public static boolean red(long[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          Object obj)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          Object[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String msg)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          Object obj)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          Object[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          byte b)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          byte[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          char c)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          char[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          double d)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          double[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          float f)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          float[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          int i)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          int[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          long l)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          String name,
                          long[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          byte b)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          byte[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          char c)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          char[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          double d)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          double[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          float f)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          float[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          int i)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          int[] ary)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          long l)
Writes logging output, with red foreground on the default background.

red

public static boolean red(QlLevel level,
                          long[] ary)
Writes logging output, with red foreground on the default background.

reset

public static void reset()

reverse

public static boolean reverse(Object obj)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(Object[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String msg)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              Object obj)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              Object[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              byte b)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              byte[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              char c)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              char[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              double d)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              double[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              float f)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              float[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              int i)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              int[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              long l)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(String name,
                              long[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(byte b)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(byte[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(char c)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(char[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(double d)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(double[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(float f)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(float[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(int i)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(int[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(long l)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(long[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              Object obj)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              Object[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String msg)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              Object obj)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              Object[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              byte b)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              byte[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              char c)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              char[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              double d)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              double[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              float f)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              float[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              int i)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              int[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              long l)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              String name,
                              long[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              byte b)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              byte[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              char c)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              char[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              double d)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              double[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              float f)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              float[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              int i)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              int[] ary)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              long l)
Writes logging output, with reverse foreground on the default background.

reverse

public static boolean reverse(QlLevel level,
                              long[] ary)
Writes logging output, with reverse foreground on the default background.

set

public static void set(boolean columns,
                       int fileWidth,
                       int lineWidth,
                       int classWidth,
                       int funcWidth)

setClassColor

public static void setClassColor(String className,
                                 ANSIColor color)

setClassColor

public static void setClassColor(ANSIColor color)

setClassWidth

public static void setClassWidth(int classWidth)

setColumns

public static void setColumns(boolean cols)

setDisabled

public static void setDisabled(Class cls)

setFileColor

public static void setFileColor(String fileName,
                                ANSIColor color)

setFileColor

public static void setFileColor(ANSIColor color)

setFileWidth

public static void setFileWidth(int fileWidth)

setFunctionWidth

public static void setFunctionWidth(int functionWidth)

setLineWidth

public static void setLineWidth(int lineWidth)

setMethodColor

public static void setMethodColor(String className,
                                  String methodName,
                                  ANSIColor color)

setMethodColor

public static void setMethodColor(String methodName,
                                  ANSIColor color)

setOut

public static void setOut(PrintWriter out)

setOutput

public static void setOutput(int type,
                             QlLevel level)

setPackageColor

public static void setPackageColor(String pkg,
                                   ANSIColor color)

setPackageColor

public static void setPackageColor(ANSIColor color)

setQuiet

public static void setQuiet(boolean quiet)

setQuiet

public static void setQuiet(QlLevel level)

setVerbose

public static void setVerbose(boolean verbose)

stack

public static boolean stack()
Writes an empty stack message.

stack

public static boolean stack(Object obj)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(Object obj,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(Object[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String msg)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            Object obj)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            Object obj,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            Object[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            byte b)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            byte b,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            byte[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            char c)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            char c,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            char[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            double d)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            double d,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            double[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            float f)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            float f,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            float[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            int i)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            int i,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            int[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            long l)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            long l,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            long[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(String name,
                            long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(byte b)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(byte b,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(byte[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(char c)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(char c,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(char[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(double d)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(double d,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(double[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(float f)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(float f,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(float[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(int i)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(int i,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(int[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(long l)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(long l,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(long[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color,
                            Object obj)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            Object obj,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            Object[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String msg)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            Object obj)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            Object obj,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            Object[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            byte b)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            byte b,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            byte[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            char c)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            char c,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            char[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            double d)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            double d,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            double[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            float f)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            float f,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            float[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            int i)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            int i,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            int[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            long l)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            long l,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            long[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            byte b)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            byte b,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            byte[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            char c)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            char c,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            char[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            double d)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            double d,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            double[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            float f)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            float f,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            float[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            int i)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            int i,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            int[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            long l)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            long l,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            long[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor color,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors,
                            Object obj)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            Object obj,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            Object[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String msg)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            Object obj)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            Object obj,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            Object[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            byte b)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            byte[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            char c)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            char c,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            char[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            double d)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            double d,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            double[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            float f)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            float f,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            float[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            int i)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            int i,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            int[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            long l)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            long l,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            long[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] msgColors,
                            String msg,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

stack

public static boolean stack(ANSIColor[] colors,
                            byte b)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            byte[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            char c)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            char c,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            char[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            double d)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            double d,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            double[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            float f)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            float f,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            float[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            int i)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            int i,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            int[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            long l)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            long l,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            long[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(ANSIColor[] colors,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            Object obj)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            Object obj,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            Object[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String msg)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            Object obj)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            Object obj,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            Object[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            Object[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            byte b)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            byte b,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            byte[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            char c)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            char c,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            char[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            double d)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            double d,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            double[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            float f)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            float f,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            float[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            int i)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            int i,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            int[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            long l)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            long l,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            long[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            String name,
                            long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            byte b)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            byte b,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            byte[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            byte[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            char c)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            char c,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            char[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            char[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            double d)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            double d,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            double[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            double[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            float f)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            float f,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            float[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            float[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            int i)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            int i,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            int[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            int[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            long l)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            long l,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            long[] ary)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            long[] ary,
                            int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            Object obj)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            Object obj,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            Object[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String msg)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            Object obj)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            Object obj,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            Object[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            byte b)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            byte b,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            byte[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            char c)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            char c,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            char[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            double d)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            double d,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            double[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            float f)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            float f,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            float[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            int i)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            int i,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            int[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            long l)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            long l,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            long[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor msgColor,
                            String msg,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            byte b)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            byte b,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            byte[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            char c)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            char c,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            char[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            char[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            double d)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            double d,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            double[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            double[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            float f)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            float f,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            float[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            float[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            int i)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            int i,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            int[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            int[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            long l)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            long l,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            long[] ary)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor color,
                            long[] ary,
                            int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            Object obj)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            Object obj,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            Object[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String msg)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            Object obj)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            Object obj,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] msgColors,
                            String name,
                            Object obj,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            Object[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            Object[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            byte b)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            byte[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            char c)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            char c,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            char[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            double d)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            double d,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            double[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            float f)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            float f,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            float[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            int i)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            int i,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            int[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            long l)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            long l,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            long[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            String name,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel lvl,
                            ANSIColor[] msgColor,
                            String msg,
                            ANSIColor fileColor,
                            ANSIColor classColor,
                            ANSIColor methodColor,
                            int numFrames)

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            byte b)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            byte b,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            byte[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            byte[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            char c)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            char c,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            char[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            char[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            double d)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            double d,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            double[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            double[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            float f)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            float f,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            float[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            float[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            int i)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            int i,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            int[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            int[] ary,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            long l)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            long l,
                            int depth)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            long[] ary)
Writes stack output, with the specified colors.

stack

public static boolean stack(QlLevel level,
                            ANSIColor[] colors,
                            long[] ary,
                            int depth)
Writes stack output, with the specified colors.

start

public static boolean start()

start

public static boolean start(String msg)

time

public static boolean time()

time

public static boolean time(String msg)

underline

public static boolean underline(Object obj)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(Object[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String msg)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                Object obj)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                Object[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                byte b)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                byte[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                char c)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                char[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                double d)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                double[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                float f)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                float[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                int i)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                int[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                long l)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(String name,
                                long[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(byte b)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(byte[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(char c)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(char[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(double d)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(double[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(float f)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(float[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(int i)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(int[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(long l)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(long[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                Object obj)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                Object[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String msg)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                Object obj)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                Object[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                byte b)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                byte[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                char c)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                char[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                double d)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                double[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                float f)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                float[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                int i)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                int[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                long l)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                String name,
                                long[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                byte b)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                byte[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                char c)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                char[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                double d)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                double[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                float f)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                float[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                int i)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                int[] ary)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                long l)
Writes logging output, with underline foreground on the default background.

underline

public static boolean underline(QlLevel level,
                                long[] ary)
Writes logging output, with underline foreground on the default background.

underscore

public static boolean underscore(Object obj)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(Object[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String msg)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 Object obj)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 Object[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 byte b)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 byte[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 char c)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 char[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 double d)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 double[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 float f)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 float[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 int i)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 int[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 long l)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(String name,
                                 long[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(byte b)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(byte[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(char c)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(char[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(double d)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(double[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(float f)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(float[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(int i)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(int[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(long l)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(long[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 Object obj)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 Object[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String msg)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 Object obj)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 Object[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 byte b)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 byte[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 char c)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 char[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 double d)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 double[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 float f)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 float[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 int i)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 int[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 long l)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 String name,
                                 long[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 byte b)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 byte[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 char c)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 char[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 double d)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 double[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 float f)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 float[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 int i)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 int[] ary)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 long l)
Writes logging output, with underscore foreground on the default background.

underscore

public static boolean underscore(QlLevel level,
                                 long[] ary)
Writes logging output, with underscore foreground on the default background.

verbose

public static boolean verbose()

white

public static boolean white(Object obj)
Writes logging output, with white foreground on the default background.

white

public static boolean white(Object[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String msg)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            Object obj)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            Object[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            byte b)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            byte[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            char c)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            char[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            double d)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            double[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            float f)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            float[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            int i)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            int[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            long l)
Writes logging output, with white foreground on the default background.

white

public static boolean white(String name,
                            long[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(byte b)
Writes logging output, with white foreground on the default background.

white

public static boolean white(byte[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(char c)
Writes logging output, with white foreground on the default background.

white

public static boolean white(char[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(double d)
Writes logging output, with white foreground on the default background.

white

public static boolean white(double[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(float f)
Writes logging output, with white foreground on the default background.

white

public static boolean white(float[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(int i)
Writes logging output, with white foreground on the default background.

white

public static boolean white(int[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(long l)
Writes logging output, with white foreground on the default background.

white

public static boolean white(long[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            Object obj)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            Object[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String msg)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            Object obj)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            Object[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            byte b)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            byte[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            char c)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            char[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            double d)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            double[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            float f)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            float[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            int i)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            int[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            long l)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            String name,
                            long[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            byte b)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            byte[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            char c)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            char[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            double d)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            double[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            float f)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            float[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            int i)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            int[] ary)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            long l)
Writes logging output, with white foreground on the default background.

white

public static boolean white(QlLevel level,
                            long[] ary)
Writes logging output, with white foreground on the default background.

yellow

public static boolean yellow(Object obj)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(Object[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String msg)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             Object obj)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             Object[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             byte b)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             byte[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             char c)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             char[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             double d)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             double[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             float f)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             float[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             int i)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             int[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             long l)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(String name,
                             long[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(byte b)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(byte[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(char c)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(char[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(double d)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(double[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(float f)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(float[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(int i)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(int[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(long l)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(long[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             Object obj)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             Object[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String msg)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             Object obj)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             Object[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             byte b)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             byte[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             char c)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             char[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             double d)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             double[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             float f)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             float[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             int i)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             int[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             long l)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             String name,
                             long[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             byte b)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             byte[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             char c)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             char[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             double d)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             double[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             float f)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             float[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             int i)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             int[] ary)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             long l)
Writes logging output, with yellow foreground on the default background.

yellow

public static boolean yellow(QlLevel level,
                             long[] ary)
Writes logging output, with yellow foreground on the default background.