org.incava.qualog

Class Qualog

public class Qualog extends 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 ANSIColorBLACK
The code for black text.
static ANSIColorBLINK
The code for the blink attribute.
static ANSIColorBLUE
The code for blue text.
static ANSIColorBOLD
The code for bold decoration.
static StringCLASS_WIDTH_PROPERTY_KEY
static StringCOLUMNAR_PROPERTY_KEY
static ANSIColorCONCEALED
The code for hidden text.
static ANSIColorCYAN
The code for cyan text.
protected static intDEFAULT_STACK_DEPTH
The default number of stack trace elements to display in a stack.
static StringFILE_WIDTH_PROPERTY_KEY
static ANSIColorGREEN
The code for green text.
static QlLevelLEVEL0
static QlLevelLEVEL1
static QlLevelLEVEL2
static QlLevelLEVEL3
static QlLevelLEVEL4
static QlLevelLEVEL5
static QlLevelLEVEL6
static QlLevelLEVEL7
static QlLevelLEVEL8
static QlLevelLEVEL9
static StringLEVEL_PROPERTY_KEY
static StringLINE_WIDTH_PROPERTY_KEY
static ANSIColorMAGENTA
The code for magenta text.
static StringMETHOD_WIDTH_PROPERTY_KEY
static ANSIColorNONE
The code for no color applied.
static ANSIColorNO_COLOR
An object denoting no color.
static ANSIColor[]NO_COLORS
An array denoting no colors.
static intNO_OUTPUT
static ANSIColorON_BLACK
The code for black background.
static ANSIColorON_BLUE
The code for blue background.
static ANSIColorON_CYAN
The code for cyan background.
static ANSIColorON_GREEN
The code for green background.
static ANSIColorON_MAGENTA
The code for magenta background.
static ANSIColorON_RED
The code for red background.
static ANSIColorON_WHITE
The code for white background.
static ANSIColorON_YELLOW
The code for yellow background.
static intQUIET
static ANSIColorRED
The code for red text.
static ANSIColorRESET
The code for reset of colors and decorations.
static ANSIColorREVERSE
The code for reversed text.
static StringSHOW_CLASSES_PROPERTY_KEY
static StringSHOW_FILES_PROPERTY_KEY
protected static QlTimertimer
static ANSIColorUNDERLINE
The code for underline (AKA underscore).
static ANSIColorUNDERSCORE
The code for underscore (AKA underline).
static intVERBOSE
static StringVERBOSE_PROPERTY_KEY
static StringVERSION
The version of the Qualog module.
protected static QlWriterwriter
static ANSIColorWHITE
The code for white text.
static ANSIColorYELLOW
The code for yellow text.
Method Summary
static voidaddClassSkipped(Class cls)
static voidaddClassSkipped(String clsName)
static voidaddFilter(QlFilter filter)
static booleanblack(String msg)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String msg)
Writes logging output, with black foreground on the default background.
static booleanblack(Object obj)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, Object obj)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, Object obj)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, Object obj)
Writes logging output, with black foreground on the default background.
static booleanblack(byte b)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, byte b)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, byte b)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, byte b)
Writes logging output, with black foreground on the default background.
static booleanblack(char c)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, char c)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, char c)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, char c)
Writes logging output, with black foreground on the default background.
static booleanblack(double d)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, double d)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, double d)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, double d)
Writes logging output, with black foreground on the default background.
static booleanblack(float f)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, float f)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, float f)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, float f)
Writes logging output, with black foreground on the default background.
static booleanblack(int i)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, int i)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, int i)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, int i)
Writes logging output, with black foreground on the default background.
static booleanblack(long l)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, long l)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, long l)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, long l)
Writes logging output, with black foreground on the default background.
static booleanblack(Object[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, Object[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, Object[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, Object[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(byte[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, byte[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, byte[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, byte[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(char[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, char[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, char[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, char[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(double[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, double[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, double[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, double[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(float[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, float[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, float[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, float[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(int[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, int[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, int[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, int[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(long[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, long[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(String name, long[] ary)
Writes logging output, with black foreground on the default background.
static booleanblack(QlLevel level, String name, long[] ary)
Writes logging output, with black foreground on the default background.
static booleanblink(String msg)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String msg)
Writes logging output, with blink foreground on the default background.
static booleanblink(Object obj)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, Object obj)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, Object obj)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, Object obj)
Writes logging output, with blink foreground on the default background.
static booleanblink(byte b)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, byte b)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, byte b)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, byte b)
Writes logging output, with blink foreground on the default background.
static booleanblink(char c)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, char c)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, char c)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, char c)
Writes logging output, with blink foreground on the default background.
static booleanblink(double d)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, double d)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, double d)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, double d)
Writes logging output, with blink foreground on the default background.
static booleanblink(float f)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, float f)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, float f)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, float f)
Writes logging output, with blink foreground on the default background.
static booleanblink(int i)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, int i)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, int i)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, int i)
Writes logging output, with blink foreground on the default background.
static booleanblink(long l)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, long l)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, long l)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, long l)
Writes logging output, with blink foreground on the default background.
static booleanblink(Object[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, Object[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, Object[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, Object[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(byte[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, byte[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, byte[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, byte[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(char[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, char[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, char[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, char[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(double[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, double[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, double[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, double[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(float[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, float[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, float[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, float[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(int[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, int[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, int[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, int[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(long[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, long[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(String name, long[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblink(QlLevel level, String name, long[] ary)
Writes logging output, with blink foreground on the default background.
static booleanblue(String msg)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String msg)
Writes logging output, with blue foreground on the default background.
static booleanblue(Object obj)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, Object obj)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, Object obj)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, Object obj)
Writes logging output, with blue foreground on the default background.
static booleanblue(byte b)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, byte b)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, byte b)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, byte b)
Writes logging output, with blue foreground on the default background.
static booleanblue(char c)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, char c)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, char c)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, char c)
Writes logging output, with blue foreground on the default background.
static booleanblue(double d)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, double d)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, double d)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, double d)
Writes logging output, with blue foreground on the default background.
static booleanblue(float f)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, float f)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, float f)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, float f)
Writes logging output, with blue foreground on the default background.
static booleanblue(int i)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, int i)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, int i)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, int i)
Writes logging output, with blue foreground on the default background.
static booleanblue(long l)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, long l)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, long l)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, long l)
Writes logging output, with blue foreground on the default background.
static booleanblue(Object[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, Object[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, Object[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, Object[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(byte[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, byte[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, byte[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, byte[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(char[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, char[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, char[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, char[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(double[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, double[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, double[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, double[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(float[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, float[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, float[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, float[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(int[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, int[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, int[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, int[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(long[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, long[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(String name, long[] ary)
Writes logging output, with blue foreground on the default background.
static booleanblue(QlLevel level, String name, long[] ary)
Writes logging output, with blue foreground on the default background.
static booleanbold(String msg)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String msg)
Writes logging output, with bold foreground on the default background.
static booleanbold(Object obj)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, Object obj)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, Object obj)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, Object obj)
Writes logging output, with bold foreground on the default background.
static booleanbold(byte b)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, byte b)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, byte b)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, byte b)
Writes logging output, with bold foreground on the default background.
static booleanbold(char c)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, char c)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, char c)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, char c)
Writes logging output, with bold foreground on the default background.
static booleanbold(double d)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, double d)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, double d)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, double d)
Writes logging output, with bold foreground on the default background.
static booleanbold(float f)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, float f)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, float f)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, float f)
Writes logging output, with bold foreground on the default background.
static booleanbold(int i)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, int i)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, int i)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, int i)
Writes logging output, with bold foreground on the default background.
static booleanbold(long l)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, long l)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, long l)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, long l)
Writes logging output, with bold foreground on the default background.
static booleanbold(Object[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, Object[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, Object[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, Object[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(byte[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, byte[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, byte[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, byte[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(char[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, char[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, char[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, char[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(double[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, double[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, double[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, double[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(float[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, float[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, float[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, float[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(int[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, int[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, int[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, int[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(long[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, long[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(String name, long[] ary)
Writes logging output, with bold foreground on the default background.
static booleanbold(QlLevel level, String name, long[] ary)
Writes logging output, with bold foreground on the default background.
static voidclear()
static voidclearClassColor(String className)
static booleanconcealed(String msg)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String msg)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(Object obj)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, Object obj)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, Object obj)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, Object obj)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(byte b)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, byte b)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, byte b)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, byte b)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(char c)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, char c)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, char c)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, char c)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(double d)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, double d)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, double d)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, double d)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(float f)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, float f)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, float f)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, float f)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(int i)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, int i)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, int i)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, int i)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(long l)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, long l)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, long l)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, long l)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(Object[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, Object[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, Object[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, Object[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(byte[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, byte[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, byte[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, byte[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(char[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, char[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, char[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, char[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(double[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, double[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, double[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, double[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(float[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, float[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, float[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, float[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(int[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, int[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, int[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, int[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(long[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, long[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(String name, long[] ary)
Writes logging output, with concealed foreground on the default background.
static booleanconcealed(QlLevel level, String name, long[] ary)
Writes logging output, with concealed foreground on the default background.
static booleancyan(String msg)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String msg)
Writes logging output, with cyan foreground on the default background.
static booleancyan(Object obj)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, Object obj)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, Object obj)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, Object obj)
Writes logging output, with cyan foreground on the default background.
static booleancyan(byte b)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, byte b)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, byte b)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, byte b)
Writes logging output, with cyan foreground on the default background.
static booleancyan(char c)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, char c)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, char c)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, char c)
Writes logging output, with cyan foreground on the default background.
static booleancyan(double d)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, double d)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, double d)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, double d)
Writes logging output, with cyan foreground on the default background.
static booleancyan(float f)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, float f)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, float f)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, float f)
Writes logging output, with cyan foreground on the default background.
static booleancyan(int i)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, int i)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, int i)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, int i)
Writes logging output, with cyan foreground on the default background.
static booleancyan(long l)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, long l)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, long l)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, long l)
Writes logging output, with cyan foreground on the default background.
static booleancyan(Object[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, Object[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, Object[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, Object[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(byte[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, byte[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, byte[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, byte[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(char[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, char[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, char[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, char[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(double[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, double[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, double[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, double[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(float[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, float[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, float[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, float[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(int[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, int[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, int[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, int[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(long[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, long[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(String name, long[] ary)
Writes logging output, with cyan foreground on the default background.
static booleancyan(QlLevel level, String name, long[] ary)
Writes logging output, with cyan foreground on the default background.
static booleanend(String msg)
static booleanend()
static intfindStackStart(StackTraceElement[] stack)
protected static StackTraceElement[]getStack(int depth)
static booleangreen(String msg)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String msg)
Writes logging output, with green foreground on the default background.
static booleangreen(Object obj)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, Object obj)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, Object obj)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, Object obj)
Writes logging output, with green foreground on the default background.
static booleangreen(byte b)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, byte b)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, byte b)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, byte b)
Writes logging output, with green foreground on the default background.
static booleangreen(char c)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, char c)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, char c)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, char c)
Writes logging output, with green foreground on the default background.
static booleangreen(double d)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, double d)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, double d)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, double d)
Writes logging output, with green foreground on the default background.
static booleangreen(float f)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, float f)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, float f)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, float f)
Writes logging output, with green foreground on the default background.
static booleangreen(int i)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, int i)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, int i)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, int i)
Writes logging output, with green foreground on the default background.
static booleangreen(long l)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, long l)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, long l)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, long l)
Writes logging output, with green foreground on the default background.
static booleangreen(Object[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, Object[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, Object[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, Object[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(byte[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, byte[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, byte[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, byte[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(char[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, char[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, char[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, char[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(double[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, double[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, double[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, double[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(float[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, float[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, float[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, float[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(int[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, int[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, int[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, int[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(long[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, long[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(String name, long[] ary)
Writes logging output, with green foreground on the default background.
static booleangreen(QlLevel level, String name, long[] ary)
Writes logging output, with green foreground on the default background.
static booleanisLoggable(QlLevel level)
static booleanlog()
Writes an empty log message.
static booleanlog(String msg)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String msg)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String msg)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String msg)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String msg)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String msg)
Writes logging output, with the specified colors.
static booleanlog(Object obj)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, Object obj)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, Object obj)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, Object obj)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, Object obj)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, Object obj)
Writes logging output, with the specified colors.
static booleanlog(String name, Object obj)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, Object obj)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, Object obj)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, Object obj)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, Object obj)
Writes logging output, with the specified colors.
static booleanlog(byte b)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, byte b)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, byte b)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, byte b)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, byte b)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, byte b)
Writes logging output, with the specified colors.
static booleanlog(String name, byte b)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, byte b)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, byte b)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, byte b)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, byte b)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, byte b)
Writes logging output, with the specified colors.
static booleanlog(char c)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, char c)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, char c)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, char c)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, char c)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, char c)
Writes logging output, with the specified colors.
static booleanlog(String name, char c)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, char c)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, char c)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, char c)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, char c)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, char c)
Writes logging output, with the specified colors.
static booleanlog(double d)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, double d)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, double d)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, double d)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, double d)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, double d)
Writes logging output, with the specified colors.
static booleanlog(String name, double d)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, double d)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, double d)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, double d)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, double d)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, double d)
Writes logging output, with the specified colors.
static booleanlog(float f)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, float f)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, float f)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, float f)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, float f)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, float f)
Writes logging output, with the specified colors.
static booleanlog(String name, float f)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, float f)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, float f)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, float f)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, float f)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, float f)
Writes logging output, with the specified colors.
static booleanlog(int i)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, int i)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, int i)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, int i)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, int i)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, int i)
Writes logging output, with the specified colors.
static booleanlog(String name, int i)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, int i)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, int i)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, int i)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, int i)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, int i)
Writes logging output, with the specified colors.
static booleanlog(long l)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, long l)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, long l)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, long l)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, long l)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, long l)
Writes logging output, with the specified colors.
static booleanlog(String name, long l)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, long l)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, long l)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, long l)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, long l)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, long l)
Writes logging output, with the specified colors.
static booleanlog(Object[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, Object[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, Object[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, Object[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, Object[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, Object[] ary)
Writes logging output, with the specified colors.
static booleanlog(String name, Object[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, Object[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, Object[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, Object[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, Object[] ary)
Writes logging output, with the specified colors.
static booleanlog(byte[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, byte[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, byte[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, byte[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, byte[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, byte[] ary)
Writes logging output, with the specified colors.
static booleanlog(String name, byte[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, byte[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, byte[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, byte[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, byte[] ary)
Writes logging output, with the specified colors.
static booleanlog(char[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, char[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, char[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, char[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, char[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, char[] ary)
Writes logging output, with the specified colors.
static booleanlog(String name, char[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, char[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, char[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, char[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, char[] ary)
Writes logging output, with the specified colors.
static booleanlog(double[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, double[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, double[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, double[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, double[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, double[] ary)
Writes logging output, with the specified colors.
static booleanlog(String name, double[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, double[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, double[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, double[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, double[] ary)
Writes logging output, with the specified colors.
static booleanlog(float[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, float[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, float[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, float[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, float[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, float[] ary)
Writes logging output, with the specified colors.
static booleanlog(String name, float[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, float[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, float[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, float[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, float[] ary)
Writes logging output, with the specified colors.
static booleanlog(int[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, int[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, int[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, int[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, int[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, int[] ary)
Writes logging output, with the specified colors.
static booleanlog(String name, int[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, int[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, int[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, int[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, int[] ary)
Writes logging output, with the specified colors.
static booleanlog(long[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, long[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, long[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, long[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, long[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, long[] ary)
Writes logging output, with the specified colors.
static booleanlog(String name, long[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(ANSIColor color, String name, long[] ary)
Writes logging output, with the specified color.
static booleanlog(ANSIColor[] colors, String name, long[] ary)
Writes logging output, with the specified colors.
static booleanlog(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground and background.
static booleanlog(QlLevel level, ANSIColor color, String name, long[] ary)
Writes logging output, with the specified color.
static booleanlog(QlLevel level, ANSIColor[] colors, String name, long[] ary)
Writes logging output, with the specified colors.
static booleanmagenta(String msg)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String msg)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(Object obj)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, Object obj)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, Object obj)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, Object obj)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(byte b)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, byte b)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, byte b)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, byte b)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(char c)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, char c)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, char c)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, char c)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(double d)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, double d)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, double d)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, double d)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(float f)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, float f)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, float f)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, float f)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(int i)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, int i)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, int i)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, int i)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(long l)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, long l)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, long l)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, long l)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(Object[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, Object[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, Object[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, Object[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(byte[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, byte[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, byte[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, byte[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(char[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, char[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, char[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, char[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(double[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, double[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, double[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, double[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(float[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, float[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, float[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, float[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(int[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, int[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, int[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, int[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(long[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, long[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(String name, long[] ary)
Writes logging output, with magenta foreground on the default background.
static booleanmagenta(QlLevel level, String name, long[] ary)
Writes logging output, with magenta foreground on the default background.
static booleannone(String msg)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String msg)
Writes logging output, with none foreground on the default background.
static booleannone(Object obj)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, Object obj)
Writes logging output, with none foreground on the default background.
static booleannone(String name, Object obj)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, Object obj)
Writes logging output, with none foreground on the default background.
static booleannone(byte b)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, byte b)
Writes logging output, with none foreground on the default background.
static booleannone(String name, byte b)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, byte b)
Writes logging output, with none foreground on the default background.
static booleannone(char c)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, char c)
Writes logging output, with none foreground on the default background.
static booleannone(String name, char c)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, char c)
Writes logging output, with none foreground on the default background.
static booleannone(double d)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, double d)
Writes logging output, with none foreground on the default background.
static booleannone(String name, double d)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, double d)
Writes logging output, with none foreground on the default background.
static booleannone(float f)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, float f)
Writes logging output, with none foreground on the default background.
static booleannone(String name, float f)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, float f)
Writes logging output, with none foreground on the default background.
static booleannone(int i)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, int i)
Writes logging output, with none foreground on the default background.
static booleannone(String name, int i)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, int i)
Writes logging output, with none foreground on the default background.
static booleannone(long l)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, long l)
Writes logging output, with none foreground on the default background.
static booleannone(String name, long l)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, long l)
Writes logging output, with none foreground on the default background.
static booleannone(Object[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, Object[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(String name, Object[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, Object[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(byte[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, byte[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(String name, byte[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, byte[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(char[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, char[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(String name, char[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, char[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(double[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, double[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(String name, double[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, double[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(float[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, float[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(String name, float[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, float[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(int[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, int[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(String name, int[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, int[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(long[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, long[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(String name, long[] ary)
Writes logging output, with none foreground on the default background.
static booleannone(QlLevel level, String name, long[] ary)
Writes logging output, with none foreground on the default background.
static booleanonBlack(String msg)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String msg)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(Object obj)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, Object obj)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, Object obj)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(byte b)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, byte b)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, byte b)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(char c)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, char c)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, char c)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(double d)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, double d)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, double d)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(float f)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, float f)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, float f)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(int i)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, int i)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, int i)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(long l)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, long l)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, long l)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(Object[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, Object[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(byte[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, byte[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(char[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, char[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(double[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, double[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(float[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, float[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(int[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, int[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(long[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(String name, long[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlack(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a black background.
static booleanonBlue(String msg)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String msg)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(Object obj)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, Object obj)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, Object obj)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(byte b)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, byte b)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, byte b)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(char c)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, char c)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, char c)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(double d)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, double d)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, double d)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(float f)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, float f)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, float f)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(int i)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, int i)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, int i)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(long l)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, long l)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, long l)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(Object[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, Object[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(byte[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, byte[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(char[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, char[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(double[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, double[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(float[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, float[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(int[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, int[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(long[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(String name, long[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonBlue(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a blue background.
static booleanonCyan(String msg)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String msg)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(Object obj)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, Object obj)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, Object obj)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(byte b)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, byte b)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, byte b)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(char c)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, char c)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, char c)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(double d)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, double d)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, double d)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(float f)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, float f)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, float f)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(int i)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, int i)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, int i)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(long l)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, long l)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, long l)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(char[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, char[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(double[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, double[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(float[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, float[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(int[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, int[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(long[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(String name, long[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonCyan(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a cyan background.
static booleanonGreen(String msg)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String msg)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(Object obj)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, Object obj)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, Object obj)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(byte b)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, byte b)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, byte b)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(char c)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, char c)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, char c)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(double d)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, double d)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, double d)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(float f)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, float f)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, float f)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(int i)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, int i)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, int i)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(long l)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, long l)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, long l)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(Object[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, Object[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(byte[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, byte[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(char[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, char[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(double[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, double[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(float[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, float[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(int[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, int[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(long[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(String name, long[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonGreen(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a green background.
static booleanonMagenta(String msg)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String msg)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(Object obj)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, Object obj)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, Object obj)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(byte b)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, byte b)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, byte b)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(char c)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, char c)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, char c)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(double d)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, double d)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, double d)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(float f)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, float f)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, float f)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(int i)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, int i)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, int i)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(long l)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, long l)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, long l)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(char[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, char[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(double[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, double[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(float[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, float[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(int[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, int[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(long[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(String name, long[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonMagenta(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a magenta background.
static booleanonRed(String msg)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String msg)
Writes logging output, with the default foreground on a red background.
static booleanonRed(Object obj)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, Object obj)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, Object obj)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a red background.
static booleanonRed(byte b)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, byte b)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, byte b)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a red background.
static booleanonRed(char c)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, char c)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, char c)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a red background.
static booleanonRed(double d)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, double d)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, double d)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a red background.
static booleanonRed(float f)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, float f)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, float f)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a red background.
static booleanonRed(int i)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, int i)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, int i)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a red background.
static booleanonRed(long l)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, long l)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, long l)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a red background.
static booleanonRed(Object[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, Object[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(byte[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, byte[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(char[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, char[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(double[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, double[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(float[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, float[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(int[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, int[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(long[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(String name, long[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonRed(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a red background.
static booleanonWhite(String msg)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String msg)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(Object obj)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, Object obj)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, Object obj)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(byte b)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, byte b)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, byte b)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(char c)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, char c)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, char c)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(double d)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, double d)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, double d)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(float f)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, float f)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, float f)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(int i)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, int i)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, int i)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(long l)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, long l)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, long l)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(Object[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, Object[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(byte[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, byte[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(char[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, char[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(double[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, double[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(float[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, float[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(int[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, int[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(long[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(String name, long[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonWhite(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a white background.
static booleanonYellow(String msg)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String msg)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(Object obj)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, Object obj)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, Object obj)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, Object obj)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(byte b)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, byte b)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, byte b)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, byte b)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(char c)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, char c)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, char c)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, char c)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(double d)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, double d)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, double d)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, double d)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(float f)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, float f)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, float f)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, float f)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(int i)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, int i)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, int i)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, int i)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(long l)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, long l)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, long l)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, long l)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, Object[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, byte[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(char[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, char[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, char[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, char[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(double[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, double[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, double[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, double[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(float[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, float[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, float[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, float[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(int[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, int[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, int[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, int[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(long[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, long[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(String name, long[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanonYellow(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a yellow background.
static booleanred(String msg)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String msg)
Writes logging output, with red foreground on the default background.
static booleanred(Object obj)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, Object obj)
Writes logging output, with red foreground on the default background.
static booleanred(String name, Object obj)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, Object obj)
Writes logging output, with red foreground on the default background.
static booleanred(byte b)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, byte b)
Writes logging output, with red foreground on the default background.
static booleanred(String name, byte b)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, byte b)
Writes logging output, with red foreground on the default background.
static booleanred(char c)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, char c)
Writes logging output, with red foreground on the default background.
static booleanred(String name, char c)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, char c)
Writes logging output, with red foreground on the default background.
static booleanred(double d)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, double d)
Writes logging output, with red foreground on the default background.
static booleanred(String name, double d)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, double d)
Writes logging output, with red foreground on the default background.
static booleanred(float f)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, float f)
Writes logging output, with red foreground on the default background.
static booleanred(String name, float f)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, float f)
Writes logging output, with red foreground on the default background.
static booleanred(int i)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, int i)
Writes logging output, with red foreground on the default background.
static booleanred(String name, int i)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, int i)
Writes logging output, with red foreground on the default background.
static booleanred(long l)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, long l)
Writes logging output, with red foreground on the default background.
static booleanred(String name, long l)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, long l)
Writes logging output, with red foreground on the default background.
static booleanred(Object[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, Object[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(String name, Object[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, Object[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(byte[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, byte[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(String name, byte[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, byte[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(char[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, char[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(String name, char[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, char[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(double[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, double[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(String name, double[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, double[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(float[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, float[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(String name, float[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, float[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(int[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, int[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(String name, int[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, int[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(long[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, long[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(String name, long[] ary)
Writes logging output, with red foreground on the default background.
static booleanred(QlLevel level, String name, long[] ary)
Writes logging output, with red foreground on the default background.
static voidreset()
static booleanreverse(String msg)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String msg)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(Object obj)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, Object obj)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, Object obj)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, Object obj)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(byte b)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, byte b)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, byte b)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, byte b)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(char c)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, char c)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, char c)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, char c)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(double d)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, double d)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, double d)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, double d)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(float f)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, float f)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, float f)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, float f)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(int i)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, int i)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, int i)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, int i)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(long l)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, long l)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, long l)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, long l)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(Object[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, Object[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, Object[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, Object[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(byte[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, byte[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, byte[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, byte[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(char[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, char[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, char[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, char[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(double[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, double[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, double[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, double[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(float[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, float[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, float[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, float[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(int[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, int[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, int[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, int[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(long[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, long[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(String name, long[] ary)
Writes logging output, with reverse foreground on the default background.
static booleanreverse(QlLevel level, String name, long[] ary)
Writes logging output, with reverse foreground on the default background.
static voidset(boolean columns, int fileWidth, int lineWidth, int classWidth, int funcWidth)
static voidsetClassColor(String className, ANSIColor color)
static voidsetClassColor(ANSIColor color)
static voidsetClassWidth(int classWidth)
static voidsetColumns(boolean cols)
static voidsetDisabled(Class cls)
static voidsetFileColor(String fileName, ANSIColor color)
static voidsetFileColor(ANSIColor color)
static voidsetFileWidth(int fileWidth)
static voidsetFunctionWidth(int functionWidth)
static voidsetLineWidth(int lineWidth)
static voidsetMethodColor(String methodName, ANSIColor color)
static voidsetMethodColor(String className, String methodName, ANSIColor color)
static voidsetOut(PrintWriter out)
static voidsetOutput(int type, QlLevel level)
static voidsetPackageColor(ANSIColor color)
static voidsetPackageColor(String pkg, ANSIColor color)
static voidsetQuiet(boolean quiet)
static voidsetQuiet(QlLevel level)
static voidsetVerbose(boolean verbose)
static booleanstack(QlLevel level, ANSIColor[] msgColors, String name, Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static booleanstack(ANSIColor[] msgColors, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static booleanstack(QlLevel level, ANSIColor msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static booleanstack(QlLevel lvl, ANSIColor[] msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
static booleanstack()
Writes an empty stack message.
static booleanstack(String msg)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String msg)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String msg)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String msg)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String msg)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String msg)
Writes stack output, with the specified colors.
static booleanstack(Object obj)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, Object obj)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, Object obj)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, Object obj)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, Object obj)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, Object obj)
Writes stack output, with the specified colors.
static booleanstack(String name, Object obj)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, Object obj)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, Object obj)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, Object obj)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, Object obj)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, Object obj)
Writes stack output, with the specified colors.
static booleanstack(byte b)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, byte b)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, byte b)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, byte b)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, byte b)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, byte b)
Writes stack output, with the specified colors.
static booleanstack(String name, byte b)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, byte b)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, byte b)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, byte b)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, byte b)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, byte b)
Writes stack output, with the specified colors.
static booleanstack(char c)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, char c)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, char c)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, char c)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, char c)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, char c)
Writes stack output, with the specified colors.
static booleanstack(String name, char c)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, char c)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, char c)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, char c)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, char c)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, char c)
Writes stack output, with the specified colors.
static booleanstack(double d)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, double d)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, double d)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, double d)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, double d)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, double d)
Writes stack output, with the specified colors.
static booleanstack(String name, double d)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, double d)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, double d)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, double d)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, double d)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, double d)
Writes stack output, with the specified colors.
static booleanstack(float f)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, float f)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, float f)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, float f)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, float f)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, float f)
Writes stack output, with the specified colors.
static booleanstack(String name, float f)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, float f)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, float f)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, float f)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, float f)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, float f)
Writes stack output, with the specified colors.
static booleanstack(int i)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, int i)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, int i)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, int i)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, int i)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, int i)
Writes stack output, with the specified colors.
static booleanstack(String name, int i)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, int i)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, int i)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, int i)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, int i)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, int i)
Writes stack output, with the specified colors.
static booleanstack(long l)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, long l)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, long l)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, long l)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, long l)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, long l)
Writes stack output, with the specified colors.
static booleanstack(String name, long l)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, long l)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, long l)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, long l)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, long l)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, long l)
Writes stack output, with the specified colors.
static booleanstack(Object[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, Object[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, Object[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, Object[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, Object[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, Object[] ary)
Writes stack output, with the specified colors.
static booleanstack(String name, Object[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, Object[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, Object[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, Object[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, Object[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, Object[] ary)
Writes stack output, with the specified colors.
static booleanstack(byte[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, byte[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, byte[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, byte[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, byte[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, byte[] ary)
Writes stack output, with the specified colors.
static booleanstack(String name, byte[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, byte[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, byte[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, byte[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, byte[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, byte[] ary)
Writes stack output, with the specified colors.
static booleanstack(char[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, char[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, char[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, char[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, char[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, char[] ary)
Writes stack output, with the specified colors.
static booleanstack(String name, char[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, char[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, char[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, char[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, char[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, char[] ary)
Writes stack output, with the specified colors.
static booleanstack(double[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, double[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, double[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, double[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, double[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, double[] ary)
Writes stack output, with the specified colors.
static booleanstack(String name, double[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, double[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, double[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, double[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, double[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, double[] ary)
Writes stack output, with the specified colors.
static booleanstack(float[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, float[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, float[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, float[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, float[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, float[] ary)
Writes stack output, with the specified colors.
static booleanstack(String name, float[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, float[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, float[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, float[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, float[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, float[] ary)
Writes stack output, with the specified colors.
static booleanstack(int[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, int[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, int[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, int[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, int[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, int[] ary)
Writes stack output, with the specified colors.
static booleanstack(String name, int[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, int[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, int[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, int[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, int[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, int[] ary)
Writes stack output, with the specified colors.
static booleanstack(long[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, long[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, long[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, long[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, long[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, long[] ary)
Writes stack output, with the specified colors.
static booleanstack(String name, long[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, long[] ary)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, long[] ary)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, long[] ary)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, long[] ary)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, long[] ary)
Writes stack output, with the specified colors.
static booleanstack(Object obj, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, Object obj, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, Object obj, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, Object obj, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, Object obj, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, Object obj, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, Object obj, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, Object obj, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, Object obj, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, Object obj, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, Object obj, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, Object obj, int depth)
Writes stack output, with the specified colors.
static booleanstack(byte b, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, byte b, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, byte b, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, byte b, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, byte b, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, byte b, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, byte b, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, byte b, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, byte b, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, byte b, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, byte b, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, byte b, int depth)
Writes stack output, with the specified colors.
static booleanstack(char c, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, char c, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, char c, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, char c, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, char c, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, char c, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, char c, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, char c, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, char c, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, char c, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, char c, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, char c, int depth)
Writes stack output, with the specified colors.
static booleanstack(double d, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, double d, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, double d, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, double d, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, double d, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, double d, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, double d, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, double d, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, double d, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, double d, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, double d, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, double d, int depth)
Writes stack output, with the specified colors.
static booleanstack(float f, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, float f, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, float f, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, float f, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, float f, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, float f, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, float f, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, float f, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, float f, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, float f, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, float f, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, float f, int depth)
Writes stack output, with the specified colors.
static booleanstack(int i, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, int i, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, int i, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, int i, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, int i, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, int i, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, int i, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, int i, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, int i, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, int i, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, int i, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, int i, int depth)
Writes stack output, with the specified colors.
static booleanstack(long l, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, long l, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, long l, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, long l, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, long l, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, long l, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, long l, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, long l, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, long l, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, long l, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, long l, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, long l, int depth)
Writes stack output, with the specified colors.
static booleanstack(Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, Object[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, Object[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, Object[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, Object[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, Object[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, Object[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, Object[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, Object[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, Object[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, byte[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, byte[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, byte[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, byte[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, byte[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, byte[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, byte[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, byte[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, byte[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(char[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, char[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, char[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, char[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, char[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, char[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, char[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, char[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, char[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, char[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, char[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, char[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(double[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, double[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, double[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, double[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, double[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, double[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, double[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, double[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, double[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, double[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, double[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, double[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(float[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, float[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, float[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, float[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, float[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, float[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, float[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, float[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, float[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, float[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, float[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, float[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(int[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, int[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, int[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, int[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, int[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, int[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, int[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, int[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, int[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, int[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, int[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, int[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(long[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, long[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, long[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, long[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, long[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, long[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(String name, long[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(ANSIColor color, String name, long[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(ANSIColor[] colors, String name, long[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstack(QlLevel level, String name, long[] ary, int depth)
Writes stack output, with the default foreground and background.
static booleanstack(QlLevel level, ANSIColor color, String name, long[] ary, int depth)
Writes stack output, with the specified color.
static booleanstack(QlLevel level, ANSIColor[] colors, String name, long[] ary, int depth)
Writes stack output, with the specified colors.
static booleanstart(String msg)
static booleanstart()
static booleantime(String msg)
static booleantime()
static booleanunderline(String msg)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String msg)
Writes logging output, with underline foreground on the default background.
static booleanunderline(Object obj)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, Object obj)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, Object obj)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, Object obj)
Writes logging output, with underline foreground on the default background.
static booleanunderline(byte b)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, byte b)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, byte b)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, byte b)
Writes logging output, with underline foreground on the default background.
static booleanunderline(char c)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, char c)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, char c)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, char c)
Writes logging output, with underline foreground on the default background.
static booleanunderline(double d)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, double d)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, double d)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, double d)
Writes logging output, with underline foreground on the default background.
static booleanunderline(float f)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, float f)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, float f)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, float f)
Writes logging output, with underline foreground on the default background.
static booleanunderline(int i)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, int i)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, int i)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, int i)
Writes logging output, with underline foreground on the default background.
static booleanunderline(long l)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, long l)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, long l)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, long l)
Writes logging output, with underline foreground on the default background.
static booleanunderline(Object[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, Object[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, Object[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, Object[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(byte[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, byte[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, byte[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, byte[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(char[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, char[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, char[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, char[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(double[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, double[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, double[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, double[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(float[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, float[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, float[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, float[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(int[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, int[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, int[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, int[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(long[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, long[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(String name, long[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderline(QlLevel level, String name, long[] ary)
Writes logging output, with underline foreground on the default background.
static booleanunderscore(String msg)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String msg)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(Object obj)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, Object obj)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, Object obj)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, Object obj)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(byte b)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, byte b)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, byte b)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, byte b)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(char c)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, char c)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, char c)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, char c)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(double d)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, double d)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, double d)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, double d)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(float f)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, float f)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, float f)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, float f)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(int i)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, int i)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, int i)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, int i)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(long l)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, long l)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, long l)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, long l)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(Object[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, Object[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, Object[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, Object[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(byte[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, byte[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, byte[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, byte[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(char[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, char[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, char[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, char[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(double[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, double[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, double[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, double[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(float[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, float[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, float[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, float[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(int[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, int[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, int[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, int[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(long[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, long[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(String name, long[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanunderscore(QlLevel level, String name, long[] ary)
Writes logging output, with underscore foreground on the default background.
static booleanverbose()
static booleanwhite(String msg)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String msg)
Writes logging output, with white foreground on the default background.
static booleanwhite(Object obj)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, Object obj)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, Object obj)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, Object obj)
Writes logging output, with white foreground on the default background.
static booleanwhite(byte b)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, byte b)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, byte b)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, byte b)
Writes logging output, with white foreground on the default background.
static booleanwhite(char c)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, char c)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, char c)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, char c)
Writes logging output, with white foreground on the default background.
static booleanwhite(double d)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, double d)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, double d)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, double d)
Writes logging output, with white foreground on the default background.
static booleanwhite(float f)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, float f)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, float f)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, float f)
Writes logging output, with white foreground on the default background.
static booleanwhite(int i)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, int i)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, int i)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, int i)
Writes logging output, with white foreground on the default background.
static booleanwhite(long l)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, long l)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, long l)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, long l)
Writes logging output, with white foreground on the default background.
static booleanwhite(Object[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, Object[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, Object[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, Object[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(byte[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, byte[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, byte[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, byte[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(char[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, char[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, char[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, char[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(double[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, double[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, double[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, double[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(float[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, float[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, float[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, float[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(int[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, int[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, int[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, int[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(long[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, long[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(String name, long[] ary)
Writes logging output, with white foreground on the default background.
static booleanwhite(QlLevel level, String name, long[] ary)
Writes logging output, with white foreground on the default background.
static booleanyellow(String msg)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String msg)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(Object obj)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, Object obj)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, Object obj)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, Object obj)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(byte b)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, byte b)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, byte b)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, byte b)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(char c)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, char c)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, char c)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, char c)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(double d)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, double d)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, double d)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, double d)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(float f)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, float f)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, float f)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, float f)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(int i)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, int i)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, int i)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, int i)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(long l)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, long l)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, long l)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, long l)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(Object[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, Object[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, Object[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, Object[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(byte[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, byte[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, byte[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, byte[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(char[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, char[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, char[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, char[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(double[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, double[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, double[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, double[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(float[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, float[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, float[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, float[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(int[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, int[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, int[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, int[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(long[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, long[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(String name, long[] ary)
Writes logging output, with yellow foreground on the default background.
static booleanyellow(QlLevel level, String name, long[] ary)
Writes logging output, with yellow foreground on the default background.

Field Detail

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.

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

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

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

timer

protected static QlTimer timer

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

VERBOSE_PROPERTY_KEY

public static final String VERBOSE_PROPERTY_KEY

VERSION

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

writer

protected static QlWriter writer

WHITE

public static final ANSIColor WHITE
The code for white text.

YELLOW

public static final ANSIColor YELLOW
The code for yellow text.

Method Detail

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(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

black

public static boolean black(String name, long[] ary)
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.

blink

public static boolean blink(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

blink

public static boolean blink(String name, long[] ary)
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.

blue

public static boolean blue(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

blue

public static boolean blue(String name, long[] ary)
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.

bold

public static boolean bold(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

bold

public static boolean bold(String name, long[] ary)
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.

clear

public static void clear()

clearClassColor

public static void clearClassColor(String className)

concealed

public static boolean concealed(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

concealed

public static boolean concealed(String name, long[] ary)
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.

cyan

public static boolean cyan(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

cyan

public static boolean cyan(String name, long[] ary)
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.

end

public static boolean end(String msg)

end

public static boolean end()

findStackStart

public static int findStackStart(StackTraceElement[] stack)

getStack

protected static StackTraceElement[] getStack(int depth)

green

public static boolean green(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

green

public static boolean green(String name, long[] ary)
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.

isLoggable

public static boolean isLoggable(QlLevel level)

log

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

log

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

log

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

log

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

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, ANSIColor color, String msg)
Writes logging output, with the specified color.

log

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

log

public static boolean log(Object obj)
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[] colors, Object obj)
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, ANSIColor color, Object obj)
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(String name, Object obj)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, String name, Object obj)
Writes logging output, with the specified color.

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(byte b)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, byte b)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, byte b)
Writes logging output, with the specified color.

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(char c)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, char c)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, char c)
Writes logging output, with the specified color.

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(double d)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, double d)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, double d)
Writes logging output, with the specified color.

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(float f)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, float f)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, float f)
Writes logging output, with the specified color.

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(int i)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, int i)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, int i)
Writes logging output, with the specified color.

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(long l)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, long l)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, long l)
Writes logging output, with the specified color.

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(Object[] ary)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, Object[] ary)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, Object[] ary)
Writes logging output, with the specified color.

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(byte[] ary)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, byte[] ary)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, byte[] ary)
Writes logging output, with the specified color.

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(char[] ary)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, char[] ary)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, char[] ary)
Writes logging output, with the specified color.

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(double[] ary)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, double[] ary)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, double[] ary)
Writes logging output, with the specified color.

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(float[] ary)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, float[] ary)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, float[] ary)
Writes logging output, with the specified color.

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(int[] ary)
Writes logging output, with the default foreground and background.

log

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

log

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

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, ANSIColor color, int[] ary)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, int[] ary)
Writes logging output, with the specified color.

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(long[] ary)
Writes logging output, with the default foreground and background.

log

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

log

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

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, long[] ary)
Writes logging output, with the specified color.

log

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

log

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

log

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

log

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

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, ANSIColor color, String name, long[] ary)
Writes logging output, with the specified color.

log

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

magenta

public static boolean magenta(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

magenta

public static boolean magenta(String name, long[] ary)
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.

none

public static boolean none(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

none

public static boolean none(String name, long[] ary)
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.

onBlack

public static boolean onBlack(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a black background.

onBlue

public static boolean onBlue(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a blue background.

onCyan

public static boolean onCyan(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a cyan background.

onGreen

public static boolean onGreen(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a green background.

onMagenta

public static boolean onMagenta(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a magenta background.

onRed

public static boolean onRed(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a red background.

onWhite

public static boolean onWhite(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a white background.

onYellow

public static boolean onYellow(String msg)
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(Object obj)
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(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 obj)
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(QlLevel level, byte b)
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(QlLevel level, String name, byte b)
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(QlLevel level, char c)
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(QlLevel level, String name, char c)
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(QlLevel level, double d)
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(QlLevel level, String name, double d)
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(QlLevel level, float f)
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(QlLevel level, String name, float f)
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(QlLevel level, int i)
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(QlLevel level, String name, int i)
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(QlLevel level, long l)
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(QlLevel level, String name, long l)
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(QlLevel level, Object[] ary)
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(QlLevel level, String name, Object[] ary)
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(QlLevel level, byte[] ary)
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(QlLevel level, String name, byte[] ary)
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(QlLevel level, char[] ary)
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(QlLevel level, String name, char[] ary)
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(QlLevel level, double[] ary)
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(QlLevel level, String name, double[] ary)
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(QlLevel level, float[] ary)
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(QlLevel level, String name, float[] ary)
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(QlLevel level, int[] ary)
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(QlLevel level, String name, int[] ary)
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, long[] ary)
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(QlLevel level, String name, long[] ary)
Writes logging output, with the default foreground on a yellow background.

red

public static boolean red(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

red

public static boolean red(String name, long[] ary)
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.

reset

public static void reset()

reverse

public static boolean reverse(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

reverse

public static boolean reverse(String name, long[] ary)
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.

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 methodName, ANSIColor color)

setMethodColor

public static void setMethodColor(String className, 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(ANSIColor color)

setPackageColor

public static void setPackageColor(String pkg, 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(QlLevel level, ANSIColor[] msgColors, String name, Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)

stack

public static boolean stack(ANSIColor[] msgColors, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)

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 lvl, ANSIColor[] msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String msg)
Writes stack output, with the specified color.

stack

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

stack

public static boolean stack(Object obj)
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[] colors, Object obj)
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, ANSIColor color, Object obj)
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(String name, Object obj)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, String name, Object obj)
Writes stack output, with the specified color.

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(byte b)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, byte b)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, byte b)
Writes stack output, with the specified color.

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(char c)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, char c)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, char c)
Writes stack output, with the specified color.

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(double d)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, double d)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, double d)
Writes stack output, with the specified color.

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(float f)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, float f)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, float f)
Writes stack output, with the specified color.

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(int i)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, int i)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, int i)
Writes stack output, with the specified color.

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(long l)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, long l)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, long l)
Writes stack output, with the specified color.

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(Object[] ary)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, Object[] ary)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, Object[] ary)
Writes stack output, with the specified color.

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(byte[] ary)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, byte[] ary)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, byte[] ary)
Writes stack output, with the specified color.

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(char[] ary)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, char[] ary)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, char[] ary)
Writes stack output, with the specified color.

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(double[] ary)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, double[] ary)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, double[] ary)
Writes stack output, with the specified color.

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(float[] ary)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, float[] ary)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, float[] ary)
Writes stack output, with the specified color.

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(int[] ary)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, int[] ary)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, int[] ary)
Writes stack output, with the specified color.

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(long[] ary)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, long[] ary)
Writes stack output, with the specified color.

stack

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

stack

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

stack

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

stack

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

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, ANSIColor color, String name, long[] ary)
Writes stack output, with the specified color.

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(Object obj, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, Object obj, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, Object obj, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, Object obj, int depth)
Writes stack output, with the specified color.

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(String name, Object obj, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, Object obj, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, Object obj, int depth)
Writes stack output, with the specified color.

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(byte b, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, byte b, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, byte b, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, byte b, int depth)
Writes stack output, with the specified color.

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(String name, byte b, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, byte b, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, byte b, int depth)
Writes stack output, with the specified color.

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(char c, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, char c, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, char c, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, char c, int depth)
Writes stack output, with the specified color.

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(String name, char c, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, char c, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, char c, int depth)
Writes stack output, with the specified color.

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(double d, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, double d, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, double d, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, double d, int depth)
Writes stack output, with the specified color.

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(String name, double d, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, double d, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, double d, int depth)
Writes stack output, with the specified color.

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(float f, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, float f, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, float f, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, float f, int depth)
Writes stack output, with the specified color.

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(String name, float f, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, float f, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, float f, int depth)
Writes stack output, with the specified color.

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(int i, int depth)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, int i, int depth)
Writes stack output, with the specified color.

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(String name, int i, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, int i, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, int i, int depth)
Writes stack output, with the specified color.

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(long l, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, long l, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, long l, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, long l, int depth)
Writes stack output, with the specified color.

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(String name, long l, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, long l, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, long l, int depth)
Writes stack output, with the specified color.

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(Object[] ary, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, Object[] ary, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, Object[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, Object[] ary, int depth)
Writes stack output, with the specified color.

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(String name, Object[] ary, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, Object[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, Object[] ary, int depth)
Writes stack output, with the specified color.

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(byte[] ary, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, byte[] ary, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, byte[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, byte[] ary, int depth)
Writes stack output, with the specified color.

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(String name, byte[] ary, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, byte[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, byte[] ary, int depth)
Writes stack output, with the specified color.

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(char[] ary, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, char[] ary, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, char[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, char[] ary, int depth)
Writes stack output, with the specified color.

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(String name, char[] ary, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, char[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, char[] ary, int depth)
Writes stack output, with the specified color.

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(double[] ary, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, double[] ary, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, double[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, double[] ary, int depth)
Writes stack output, with the specified color.

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(String name, double[] ary, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, double[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, double[] ary, int depth)
Writes stack output, with the specified color.

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(float[] ary, int depth)
Writes stack output, with the default foreground and background.

stack

public static boolean stack(ANSIColor color, float[] ary, int depth)
Writes stack output, with the specified color.

stack

public static boolean stack(ANSIColor[] colors, float[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, float[] ary, int depth)
Writes stack output, with the specified color.

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(String name, float[] ary, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, float[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, float[] ary, int depth)
Writes stack output, with the specified color.

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(int[] ary, int depth)
Writes stack output, with the default foreground and background.

stack

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

stack

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

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, ANSIColor color, int[] ary, int depth)
Writes stack output, with the specified color.

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(String name, int[] ary, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, int[] ary, int depth)
Writes stack output, with the specified colors.

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, ANSIColor color, String name, int[] ary, int depth)
Writes stack output, with the specified color.

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(long[] ary, int depth)
Writes stack output, with the default foreground and background.

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, long[] ary, int depth)
Writes stack output, with the specified colors.

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, long[] ary, int depth)
Writes stack output, with the specified color.

stack

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

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(ANSIColor color, String name, long[] ary, int depth)
Writes stack output, with the specified color.

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(QlLevel level, String name, long[] ary, int depth)
Writes stack output, with the default foreground and background.

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[] colors, String name, long[] ary, int depth)
Writes stack output, with the specified colors.

start

public static boolean start(String msg)

start

public static boolean start()

time

public static boolean time(String msg)

time

public static boolean time()

underline

public static boolean underline(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

underline

public static boolean underline(String name, long[] ary)
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.

underscore

public static boolean underscore(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

underscore

public static boolean underscore(String name, long[] ary)
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.

verbose

public static boolean verbose()

white

public static boolean white(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

white

public static boolean white(String name, long[] ary)
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.

yellow

public static boolean yellow(String msg)
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(Object obj)
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(String name, Object obj)
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(byte b)
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(String name, byte b)
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(char c)
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(String name, char c)
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(double d)
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(String name, double d)
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(float f)
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(String name, float f)
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(int i)
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(String name, int i)
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(long l)
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(String name, long l)
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(Object[] ary)
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(String name, Object[] ary)
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(byte[] ary)
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(String name, byte[] ary)
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(char[] ary)
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(String name, char[] ary)
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(double[] ary)
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(String name, double[] ary)
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(float[] ary)
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(String name, float[] ary)
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(int[] ary)
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(String name, int[] ary)
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(long[] ary)
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.

yellow

public static boolean yellow(String name, long[] ary)
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.