| java.lang.Object org.incava.qualog.Qualog
Qualog | public class Qualog (Code) | | 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.
|
Method Summary | |
public static void | addClassSkipped(Class cls) | public static void | addClassSkipped(String clsName) | public static void | addFilter(QlFilter filter) | public static boolean | black(String msg) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String msg) Writes logging output, with black foreground on the default background. | public static boolean | black(Object obj) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, Object obj) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, Object obj) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, Object obj) Writes logging output, with black foreground on the default background. | public static boolean | black(byte b) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, byte b) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, byte b) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, byte b) Writes logging output, with black foreground on the default background. | public static boolean | black(char c) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, char c) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, char c) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, char c) Writes logging output, with black foreground on the default background. | public static boolean | black(double d) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, double d) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, double d) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, double d) Writes logging output, with black foreground on the default background. | public static boolean | black(float f) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, float f) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, float f) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, float f) Writes logging output, with black foreground on the default background. | public static boolean | black(int i) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, int i) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, int i) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, int i) Writes logging output, with black foreground on the default background. | public static boolean | black(long l) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, long l) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, long l) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, long l) Writes logging output, with black foreground on the default background. | public static boolean | black(Object[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, Object[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, Object[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, Object[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(byte[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, byte[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, byte[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, byte[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(char[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, char[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, char[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, char[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(double[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, double[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, double[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, double[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(float[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, float[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, float[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, float[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(int[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, int[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, int[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, int[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(long[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, long[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(String name, long[] ary) Writes logging output, with black foreground on the default background. | public static boolean | black(QlLevel level, String name, long[] ary) Writes logging output, with black foreground on the default background. | public static boolean | blink(String msg) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String msg) Writes logging output, with blink foreground on the default background. | public static boolean | blink(Object obj) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, Object obj) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, Object obj) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, Object obj) Writes logging output, with blink foreground on the default background. | public static boolean | blink(byte b) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, byte b) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, byte b) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, byte b) Writes logging output, with blink foreground on the default background. | public static boolean | blink(char c) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, char c) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, char c) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, char c) Writes logging output, with blink foreground on the default background. | public static boolean | blink(double d) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, double d) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, double d) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, double d) Writes logging output, with blink foreground on the default background. | public static boolean | blink(float f) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, float f) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, float f) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, float f) Writes logging output, with blink foreground on the default background. | public static boolean | blink(int i) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, int i) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, int i) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, int i) Writes logging output, with blink foreground on the default background. | public static boolean | blink(long l) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, long l) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, long l) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, long l) Writes logging output, with blink foreground on the default background. | public static boolean | blink(Object[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, Object[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, Object[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, Object[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(byte[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, byte[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, byte[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, byte[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(char[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, char[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, char[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, char[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(double[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, double[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, double[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, double[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(float[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, float[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, float[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, float[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(int[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, int[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, int[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, int[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(long[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, long[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(String name, long[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blink(QlLevel level, String name, long[] ary) Writes logging output, with blink foreground on the default background. | public static boolean | blue(String msg) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String msg) Writes logging output, with blue foreground on the default background. | public static boolean | blue(Object obj) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, Object obj) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, Object obj) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, Object obj) Writes logging output, with blue foreground on the default background. | public static boolean | blue(byte b) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, byte b) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, byte b) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, byte b) Writes logging output, with blue foreground on the default background. | public static boolean | blue(char c) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, char c) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, char c) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, char c) Writes logging output, with blue foreground on the default background. | public static boolean | blue(double d) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, double d) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, double d) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, double d) Writes logging output, with blue foreground on the default background. | public static boolean | blue(float f) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, float f) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, float f) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, float f) Writes logging output, with blue foreground on the default background. | public static boolean | blue(int i) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, int i) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, int i) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, int i) Writes logging output, with blue foreground on the default background. | public static boolean | blue(long l) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, long l) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, long l) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, long l) Writes logging output, with blue foreground on the default background. | public static boolean | blue(Object[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, Object[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, Object[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, Object[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(byte[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, byte[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, byte[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, byte[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(char[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, char[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, char[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, char[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(double[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, double[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, double[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, double[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(float[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, float[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, float[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, float[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(int[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, int[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, int[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, int[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(long[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, long[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(String name, long[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | blue(QlLevel level, String name, long[] ary) Writes logging output, with blue foreground on the default background. | public static boolean | bold(String msg) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String msg) Writes logging output, with bold foreground on the default background. | public static boolean | bold(Object obj) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, Object obj) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, Object obj) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, Object obj) Writes logging output, with bold foreground on the default background. | public static boolean | bold(byte b) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, byte b) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, byte b) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, byte b) Writes logging output, with bold foreground on the default background. | public static boolean | bold(char c) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, char c) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, char c) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, char c) Writes logging output, with bold foreground on the default background. | public static boolean | bold(double d) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, double d) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, double d) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, double d) Writes logging output, with bold foreground on the default background. | public static boolean | bold(float f) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, float f) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, float f) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, float f) Writes logging output, with bold foreground on the default background. | public static boolean | bold(int i) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, int i) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, int i) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, int i) Writes logging output, with bold foreground on the default background. | public static boolean | bold(long l) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, long l) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, long l) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, long l) Writes logging output, with bold foreground on the default background. | public static boolean | bold(Object[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, Object[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, Object[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, Object[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(byte[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, byte[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, byte[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, byte[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(char[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, char[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, char[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, char[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(double[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, double[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, double[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, double[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(float[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, float[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, float[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, float[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(int[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, int[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, int[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, int[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(long[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, long[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(String name, long[] ary) Writes logging output, with bold foreground on the default background. | public static boolean | bold(QlLevel level, String name, long[] ary) Writes logging output, with bold foreground on the default background. | public static void | clear() | public static void | clearClassColor(String className) | public static boolean | concealed(String msg) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String msg) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(Object obj) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, Object obj) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, Object obj) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, Object obj) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(byte b) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, byte b) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, byte b) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, byte b) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(char c) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, char c) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, char c) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, char c) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(double d) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, double d) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, double d) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, double d) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(float f) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, float f) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, float f) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, float f) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(int i) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, int i) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, int i) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, int i) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(long l) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, long l) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, long l) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, long l) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(Object[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, Object[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, Object[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, Object[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(byte[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, byte[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, byte[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, byte[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(char[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, char[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, char[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, char[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(double[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, double[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, double[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, double[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(float[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, float[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, float[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, float[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(int[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, int[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, int[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, int[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(long[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, long[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(String name, long[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | concealed(QlLevel level, String name, long[] ary) Writes logging output, with concealed foreground on the default background. | public static boolean | cyan(String msg) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String msg) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(Object obj) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, Object obj) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, Object obj) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, Object obj) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(byte b) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, byte b) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, byte b) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, byte b) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(char c) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, char c) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, char c) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, char c) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(double d) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, double d) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, double d) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, double d) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(float f) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, float f) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, float f) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, float f) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(int i) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, int i) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, int i) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, int i) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(long l) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, long l) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, long l) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, long l) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(Object[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, Object[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, Object[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, Object[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(byte[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, byte[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, byte[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, byte[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(char[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, char[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, char[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, char[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(double[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, double[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, double[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, double[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(float[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, float[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, float[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, float[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(int[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, int[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, int[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, int[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(long[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, long[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(String name, long[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | cyan(QlLevel level, String name, long[] ary) Writes logging output, with cyan foreground on the default background. | public static boolean | end(String msg) | public static boolean | end() | public static int | findStackStart(StackTraceElement[] stack) | protected static StackTraceElement[] | getStack(int depth) | public static boolean | green(String msg) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String msg) Writes logging output, with green foreground on the default background. | public static boolean | green(Object obj) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, Object obj) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, Object obj) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, Object obj) Writes logging output, with green foreground on the default background. | public static boolean | green(byte b) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, byte b) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, byte b) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, byte b) Writes logging output, with green foreground on the default background. | public static boolean | green(char c) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, char c) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, char c) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, char c) Writes logging output, with green foreground on the default background. | public static boolean | green(double d) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, double d) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, double d) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, double d) Writes logging output, with green foreground on the default background. | public static boolean | green(float f) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, float f) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, float f) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, float f) Writes logging output, with green foreground on the default background. | public static boolean | green(int i) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, int i) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, int i) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, int i) Writes logging output, with green foreground on the default background. | public static boolean | green(long l) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, long l) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, long l) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, long l) Writes logging output, with green foreground on the default background. | public static boolean | green(Object[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, Object[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, Object[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, Object[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(byte[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, byte[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, byte[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, byte[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(char[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, char[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, char[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, char[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(double[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, double[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, double[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, double[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(float[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, float[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, float[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, float[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(int[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, int[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, int[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, int[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(long[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, long[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(String name, long[] ary) Writes logging output, with green foreground on the default background. | public static boolean | green(QlLevel level, String name, long[] ary) Writes logging output, with green foreground on the default background. | public static boolean | isLoggable(QlLevel level) | public static boolean | log() Writes an empty log message. | public static boolean | log(String msg) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String msg) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String msg) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String msg) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String msg) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String msg) Writes logging output, with the specified colors. | public static boolean | log(Object obj) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, Object obj) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, Object obj) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, Object obj) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, Object obj) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, Object obj) Writes logging output, with the specified colors. | public static boolean | log(String name, Object obj) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, Object obj) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, Object obj) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, Object obj) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, Object obj) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, Object obj) Writes logging output, with the specified colors. | public static boolean | log(byte b) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, byte b) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, byte b) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, byte b) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, byte b) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, byte b) Writes logging output, with the specified colors. | public static boolean | log(String name, byte b) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, byte b) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, byte b) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, byte b) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, byte b) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, byte b) Writes logging output, with the specified colors. | public static boolean | log(char c) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, char c) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, char c) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, char c) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, char c) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, char c) Writes logging output, with the specified colors. | public static boolean | log(String name, char c) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, char c) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, char c) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, char c) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, char c) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, char c) Writes logging output, with the specified colors. | public static boolean | log(double d) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, double d) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, double d) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, double d) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, double d) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, double d) Writes logging output, with the specified colors. | public static boolean | log(String name, double d) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, double d) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, double d) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, double d) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, double d) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, double d) Writes logging output, with the specified colors. | public static boolean | log(float f) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, float f) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, float f) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, float f) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, float f) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, float f) Writes logging output, with the specified colors. | public static boolean | log(String name, float f) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, float f) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, float f) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, float f) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, float f) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, float f) Writes logging output, with the specified colors. | public static boolean | log(int i) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, int i) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, int i) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, int i) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, int i) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, int i) Writes logging output, with the specified colors. | public static boolean | log(String name, int i) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, int i) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, int i) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, int i) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, int i) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, int i) Writes logging output, with the specified colors. | public static boolean | log(long l) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, long l) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, long l) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, long l) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, long l) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, long l) Writes logging output, with the specified colors. | public static boolean | log(String name, long l) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, long l) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, long l) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, long l) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, long l) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, long l) Writes logging output, with the specified colors. | public static boolean | log(Object[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, Object[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, Object[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, Object[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, Object[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, Object[] ary) Writes logging output, with the specified colors. | public static boolean | log(String name, Object[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, Object[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, Object[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, Object[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, Object[] ary) Writes logging output, with the specified colors. | public static boolean | log(byte[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, byte[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, byte[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, byte[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, byte[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, byte[] ary) Writes logging output, with the specified colors. | public static boolean | log(String name, byte[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, byte[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, byte[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, byte[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, byte[] ary) Writes logging output, with the specified colors. | public static boolean | log(char[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, char[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, char[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, char[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, char[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, char[] ary) Writes logging output, with the specified colors. | public static boolean | log(String name, char[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, char[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, char[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, char[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, char[] ary) Writes logging output, with the specified colors. | public static boolean | log(double[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, double[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, double[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, double[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, double[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, double[] ary) Writes logging output, with the specified colors. | public static boolean | log(String name, double[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, double[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, double[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, double[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, double[] ary) Writes logging output, with the specified colors. | public static boolean | log(float[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, float[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, float[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, float[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, float[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, float[] ary) Writes logging output, with the specified colors. | public static boolean | log(String name, float[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, float[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, float[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, float[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, float[] ary) Writes logging output, with the specified colors. | public static boolean | log(int[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, int[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, int[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, int[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, int[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, int[] ary) Writes logging output, with the specified colors. | public static boolean | log(String name, int[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, int[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, int[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, int[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, int[] ary) Writes logging output, with the specified colors. | public static boolean | log(long[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, long[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, long[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, long[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, long[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, long[] ary) Writes logging output, with the specified colors. | public static boolean | log(String name, long[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(ANSIColor color, String name, long[] ary) Writes logging output, with the specified color. | public static boolean | log(ANSIColor[] colors, String name, long[] ary) Writes logging output, with the specified colors. | public static boolean | log(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground and background. | public static boolean | log(QlLevel level, ANSIColor color, String name, long[] ary) Writes logging output, with the specified color. | public static boolean | log(QlLevel level, ANSIColor[] colors, String name, long[] ary) Writes logging output, with the specified colors. | public static boolean | magenta(String msg) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String msg) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(Object obj) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, Object obj) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, Object obj) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, Object obj) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(byte b) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, byte b) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, byte b) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, byte b) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(char c) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, char c) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, char c) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, char c) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(double d) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, double d) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, double d) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, double d) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(float f) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, float f) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, float f) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, float f) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(int i) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, int i) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, int i) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, int i) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(long l) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, long l) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, long l) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, long l) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(Object[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, Object[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, Object[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, Object[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(byte[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, byte[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, byte[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, byte[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(char[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, char[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, char[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, char[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(double[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, double[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, double[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, double[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(float[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, float[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, float[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, float[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(int[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, int[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, int[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, int[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(long[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, long[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(String name, long[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | magenta(QlLevel level, String name, long[] ary) Writes logging output, with magenta foreground on the default background. | public static boolean | none(String msg) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String msg) Writes logging output, with none foreground on the default background. | public static boolean | none(Object obj) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, Object obj) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, Object obj) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, Object obj) Writes logging output, with none foreground on the default background. | public static boolean | none(byte b) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, byte b) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, byte b) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, byte b) Writes logging output, with none foreground on the default background. | public static boolean | none(char c) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, char c) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, char c) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, char c) Writes logging output, with none foreground on the default background. | public static boolean | none(double d) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, double d) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, double d) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, double d) Writes logging output, with none foreground on the default background. | public static boolean | none(float f) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, float f) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, float f) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, float f) Writes logging output, with none foreground on the default background. | public static boolean | none(int i) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, int i) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, int i) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, int i) Writes logging output, with none foreground on the default background. | public static boolean | none(long l) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, long l) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, long l) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, long l) Writes logging output, with none foreground on the default background. | public static boolean | none(Object[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, Object[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, Object[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, Object[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(byte[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, byte[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, byte[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, byte[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(char[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, char[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, char[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, char[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(double[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, double[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, double[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, double[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(float[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, float[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, float[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, float[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(int[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, int[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, int[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, int[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(long[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, long[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(String name, long[] ary) Writes logging output, with none foreground on the default background. | public static boolean | none(QlLevel level, String name, long[] ary) Writes logging output, with none foreground on the default background. | public static boolean | onBlack(String msg) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String msg) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(Object obj) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, Object obj) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, Object obj) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(byte b) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, byte b) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, byte b) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(char c) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, char c) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, char c) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, char c) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(double d) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, double d) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, double d) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, double d) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(float f) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, float f) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, float f) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, float f) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(int i) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, int i) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, int i) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, int i) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(long l) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, long l) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, long l) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, long l) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(Object[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, Object[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(byte[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, byte[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(char[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, char[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, char[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(double[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, double[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, double[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(float[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, float[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, float[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(int[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, int[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, int[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(long[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, long[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(String name, long[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlack(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a black background. | public static boolean | onBlue(String msg) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String msg) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(Object obj) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, Object obj) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, Object obj) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(byte b) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, byte b) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, byte b) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(char c) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, char c) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, char c) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, char c) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(double d) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, double d) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, double d) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, double d) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(float f) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, float f) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, float f) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, float f) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(int i) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, int i) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, int i) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, int i) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(long l) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, long l) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, long l) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, long l) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(Object[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, Object[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(byte[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, byte[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(char[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, char[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, char[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(double[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, double[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, double[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(float[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, float[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, float[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(int[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, int[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, int[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(long[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, long[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(String name, long[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onBlue(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a blue background. | public static boolean | onCyan(String msg) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String msg) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(Object obj) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, Object obj) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, Object obj) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(byte b) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, byte b) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, byte b) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(char c) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, char c) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, char c) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, char c) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(double d) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, double d) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, double d) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, double d) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(float f) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, float f) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, float f) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, float f) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(int i) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, int i) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, int i) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, int i) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(long l) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, long l) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, long l) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, long l) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(Object[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, Object[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(byte[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, byte[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(char[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, char[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, char[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(double[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, double[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, double[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(float[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, float[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, float[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(int[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, int[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, int[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(long[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, long[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(String name, long[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onCyan(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a cyan background. | public static boolean | onGreen(String msg) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String msg) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(Object obj) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, Object obj) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, Object obj) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(byte b) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, byte b) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, byte b) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(char c) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, char c) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, char c) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, char c) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(double d) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, double d) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, double d) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, double d) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(float f) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, float f) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, float f) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, float f) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(int i) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, int i) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, int i) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, int i) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(long l) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, long l) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, long l) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, long l) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(Object[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, Object[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(byte[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, byte[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(char[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, char[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, char[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(double[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, double[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, double[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(float[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, float[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, float[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(int[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, int[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, int[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(long[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, long[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(String name, long[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onGreen(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a green background. | public static boolean | onMagenta(String msg) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String msg) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(Object obj) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, Object obj) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, Object obj) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(byte b) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, byte b) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, byte b) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(char c) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, char c) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, char c) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, char c) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(double d) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, double d) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, double d) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, double d) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(float f) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, float f) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, float f) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, float f) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(int i) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, int i) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, int i) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, int i) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(long l) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, long l) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, long l) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, long l) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(Object[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, Object[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(byte[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, byte[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(char[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, char[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, char[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(double[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, double[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, double[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(float[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, float[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, float[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(int[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, int[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, int[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(long[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, long[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(String name, long[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onMagenta(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a magenta background. | public static boolean | onRed(String msg) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String msg) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(Object obj) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, Object obj) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, Object obj) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(byte b) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, byte b) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, byte b) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(char c) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, char c) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, char c) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, char c) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(double d) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, double d) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, double d) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, double d) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(float f) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, float f) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, float f) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, float f) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(int i) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, int i) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, int i) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, int i) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(long l) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, long l) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, long l) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, long l) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(Object[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, Object[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(byte[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, byte[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(char[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, char[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, char[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(double[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, double[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, double[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(float[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, float[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, float[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(int[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, int[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, int[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(long[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, long[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(String name, long[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onRed(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a red background. | public static boolean | onWhite(String msg) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String msg) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(Object obj) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, Object obj) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, Object obj) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(byte b) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, byte b) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, byte b) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(char c) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, char c) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, char c) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, char c) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(double d) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, double d) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, double d) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, double d) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(float f) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, float f) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, float f) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, float f) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(int i) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, int i) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, int i) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, int i) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(long l) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, long l) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, long l) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, long l) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(Object[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, Object[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(byte[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, byte[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(char[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, char[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, char[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(double[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, double[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, double[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(float[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, float[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, float[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(int[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, int[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, int[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(long[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, long[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(String name, long[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onWhite(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a white background. | public static boolean | onYellow(String msg) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String msg) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(Object obj) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, Object obj) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, Object obj) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, Object obj) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(byte b) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, byte b) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, byte b) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, byte b) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(char c) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, char c) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, char c) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, char c) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(double d) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, double d) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, double d) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, double d) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(float f) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, float f) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, float f) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, float f) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(int i) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, int i) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, int i) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, int i) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(long l) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, long l) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, long l) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, long l) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(Object[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, Object[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, Object[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, Object[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(byte[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, byte[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, byte[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, byte[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(char[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, char[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, char[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, char[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(double[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, double[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, double[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, double[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(float[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, float[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, float[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, float[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(int[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, int[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, int[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, int[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(long[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, long[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(String name, long[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | onYellow(QlLevel level, String name, long[] ary) Writes logging output, with the default foreground on a yellow background. | public static boolean | red(String msg) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String msg) Writes logging output, with red foreground on the default background. | public static boolean | red(Object obj) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, Object obj) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, Object obj) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, Object obj) Writes logging output, with red foreground on the default background. | public static boolean | red(byte b) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, byte b) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, byte b) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, byte b) Writes logging output, with red foreground on the default background. | public static boolean | red(char c) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, char c) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, char c) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, char c) Writes logging output, with red foreground on the default background. | public static boolean | red(double d) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, double d) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, double d) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, double d) Writes logging output, with red foreground on the default background. | public static boolean | red(float f) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, float f) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, float f) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, float f) Writes logging output, with red foreground on the default background. | public static boolean | red(int i) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, int i) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, int i) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, int i) Writes logging output, with red foreground on the default background. | public static boolean | red(long l) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, long l) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, long l) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, long l) Writes logging output, with red foreground on the default background. | public static boolean | red(Object[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, Object[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, Object[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, Object[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(byte[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, byte[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, byte[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, byte[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(char[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, char[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, char[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, char[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(double[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, double[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, double[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, double[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(float[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, float[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, float[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, float[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(int[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, int[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, int[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, int[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(long[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, long[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(String name, long[] ary) Writes logging output, with red foreground on the default background. | public static boolean | red(QlLevel level, String name, long[] ary) Writes logging output, with red foreground on the default background. | public static void | reset() | public static boolean | reverse(String msg) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String msg) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(Object obj) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, Object obj) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, Object obj) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, Object obj) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(byte b) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, byte b) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, byte b) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, byte b) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(char c) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, char c) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, char c) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, char c) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(double d) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, double d) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, double d) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, double d) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(float f) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, float f) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, float f) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, float f) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(int i) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, int i) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, int i) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, int i) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(long l) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, long l) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, long l) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, long l) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(Object[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, Object[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, Object[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, Object[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(byte[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, byte[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, byte[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, byte[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(char[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, char[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, char[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, char[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(double[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, double[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, double[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, double[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(float[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, float[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, float[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, float[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(int[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, int[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, int[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, int[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(long[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, long[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(String name, long[] ary) Writes logging output, with reverse foreground on the default background. | public static boolean | reverse(QlLevel level, String name, long[] ary) Writes logging output, with reverse foreground on the default background. | public static void | set(boolean columns, int fileWidth, int lineWidth, int classWidth, int funcWidth) | public static void | setClassColor(String className, ANSIColor color) | public static void | setClassColor(ANSIColor color) | public static void | setClassWidth(int classWidth) | public static void | setColumns(boolean cols) | public static void | setDisabled(Class cls) | public static void | setFileColor(String fileName, ANSIColor color) | public static void | setFileColor(ANSIColor color) | public static void | setFileWidth(int fileWidth) | public static void | setFunctionWidth(int functionWidth) | public static void | setLineWidth(int lineWidth) | public static void | setMethodColor(String methodName, ANSIColor color) | public static void | setMethodColor(String className, String methodName, ANSIColor color) | public static void | setOut(PrintWriter out) | public static void | setOutput(int type, QlLevel level) | public static void | setPackageColor(ANSIColor color) | public static void | setPackageColor(String pkg, ANSIColor color) | public static void | setQuiet(boolean quiet) | public static void | setQuiet(QlLevel level) | public static void | setVerbose(boolean verbose) | public static boolean | stack(QlLevel level, ANSIColor[] msgColors, String name, Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames) | public static boolean | stack(ANSIColor[] msgColors, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames) | public static boolean | stack(QlLevel level, ANSIColor msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames) | public static synchronized boolean | stack(QlLevel lvl, ANSIColor[] msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames) | public static boolean | stack() Writes an empty stack message. | public static boolean | stack(String msg) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String msg) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String msg) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String msg) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String msg) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String msg) Writes stack output, with the specified colors. | public static boolean | stack(Object obj) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, Object obj) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, Object obj) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, Object obj) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, Object obj) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, Object obj) Writes stack output, with the specified colors. | public static boolean | stack(String name, Object obj) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, Object obj) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, Object obj) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, Object obj) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, Object obj) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, Object obj) Writes stack output, with the specified colors. | public static boolean | stack(byte b) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, byte b) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, byte b) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, byte b) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, byte b) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, byte b) Writes stack output, with the specified colors. | public static boolean | stack(String name, byte b) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, byte b) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, byte b) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, byte b) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, byte b) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, byte b) Writes stack output, with the specified colors. | public static boolean | stack(char c) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, char c) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, char c) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, char c) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, char c) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, char c) Writes stack output, with the specified colors. | public static boolean | stack(String name, char c) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, char c) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, char c) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, char c) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, char c) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, char c) Writes stack output, with the specified colors. | public static boolean | stack(double d) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, double d) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, double d) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, double d) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, double d) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, double d) Writes stack output, with the specified colors. | public static boolean | stack(String name, double d) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, double d) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, double d) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, double d) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, double d) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, double d) Writes stack output, with the specified colors. | public static boolean | stack(float f) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, float f) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, float f) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, float f) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, float f) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, float f) Writes stack output, with the specified colors. | public static boolean | stack(String name, float f) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, float f) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, float f) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, float f) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, float f) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, float f) Writes stack output, with the specified colors. | public static boolean | stack(int i) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, int i) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, int i) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, int i) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, int i) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, int i) Writes stack output, with the specified colors. | public static boolean | stack(String name, int i) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, int i) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, int i) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, int i) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, int i) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, int i) Writes stack output, with the specified colors. | public static boolean | stack(long l) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, long l) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, long l) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, long l) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, long l) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, long l) Writes stack output, with the specified colors. | public static boolean | stack(String name, long l) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, long l) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, long l) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, long l) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, long l) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, long l) Writes stack output, with the specified colors. | public static boolean | stack(Object[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, Object[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, Object[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, Object[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, Object[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, Object[] ary) Writes stack output, with the specified colors. | public static boolean | stack(String name, Object[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, Object[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, Object[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, Object[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, Object[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, Object[] ary) Writes stack output, with the specified colors. | public static boolean | stack(byte[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, byte[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, byte[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, byte[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, byte[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, byte[] ary) Writes stack output, with the specified colors. | public static boolean | stack(String name, byte[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, byte[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, byte[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, byte[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, byte[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary) Writes stack output, with the specified colors. | public static boolean | stack(char[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, char[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, char[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, char[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, char[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, char[] ary) Writes stack output, with the specified colors. | public static boolean | stack(String name, char[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, char[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, char[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, char[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, char[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, char[] ary) Writes stack output, with the specified colors. | public static boolean | stack(double[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, double[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, double[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, double[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, double[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, double[] ary) Writes stack output, with the specified colors. | public static boolean | stack(String name, double[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, double[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, double[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, double[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, double[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, double[] ary) Writes stack output, with the specified colors. | public static boolean | stack(float[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, float[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, float[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, float[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, float[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, float[] ary) Writes stack output, with the specified colors. | public static boolean | stack(String name, float[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, float[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, float[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, float[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, float[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, float[] ary) Writes stack output, with the specified colors. | public static boolean | stack(int[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, int[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, int[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, int[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, int[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, int[] ary) Writes stack output, with the specified colors. | public static boolean | stack(String name, int[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, int[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, int[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, int[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, int[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, int[] ary) Writes stack output, with the specified colors. | public static boolean | stack(long[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, long[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, long[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, long[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, long[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, long[] ary) Writes stack output, with the specified colors. | public static boolean | stack(String name, long[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, long[] ary) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, long[] ary) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, long[] ary) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, long[] ary) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, long[] ary) Writes stack output, with the specified colors. | public static boolean | stack(Object obj, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, Object obj, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, Object obj, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, Object obj, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, Object obj, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, Object obj, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, Object obj, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, Object obj, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, Object obj, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, Object obj, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, Object obj, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, Object obj, int depth) Writes stack output, with the specified colors. | public static boolean | stack(byte b, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, byte b, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, byte b, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, byte b, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, byte b, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, byte b, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, byte b, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, byte b, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, byte b, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, byte b, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, byte b, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, byte b, int depth) Writes stack output, with the specified colors. | public static boolean | stack(char c, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, char c, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, char c, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, char c, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, char c, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, char c, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, char c, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, char c, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, char c, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, char c, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, char c, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, char c, int depth) Writes stack output, with the specified colors. | public static boolean | stack(double d, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, double d, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, double d, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, double d, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, double d, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, double d, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, double d, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, double d, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, double d, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, double d, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, double d, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, double d, int depth) Writes stack output, with the specified colors. | public static boolean | stack(float f, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, float f, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, float f, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, float f, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, float f, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, float f, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, float f, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, float f, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, float f, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, float f, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, float f, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, float f, int depth) Writes stack output, with the specified colors. | public static boolean | stack(int i, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, int i, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, int i, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, int i, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, int i, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, int i, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, int i, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, int i, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, int i, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, int i, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, int i, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, int i, int depth) Writes stack output, with the specified colors. | public static boolean | stack(long l, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, long l, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, long l, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, long l, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, long l, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, long l, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, long l, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, long l, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, long l, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, long l, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, long l, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, long l, int depth) Writes stack output, with the specified colors. | public static boolean | stack(Object[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, Object[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, Object[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, Object[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, Object[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, Object[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, Object[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, Object[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, Object[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, Object[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, Object[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, Object[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(byte[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, byte[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, byte[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, byte[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, byte[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, byte[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, byte[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, byte[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, byte[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, byte[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, byte[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(char[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, char[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, char[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, char[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, char[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, char[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, char[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, char[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, char[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, char[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, char[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, char[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(double[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, double[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, double[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, double[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, double[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, double[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, double[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, double[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, double[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, double[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, double[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, double[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(float[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, float[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, float[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, float[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, float[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, float[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, float[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, float[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, float[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, float[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, float[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, float[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(int[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, int[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, int[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, int[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, int[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, int[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, int[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, int[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, int[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, int[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, int[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, int[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(long[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, long[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, long[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, long[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, long[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, long[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(String name, long[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(ANSIColor color, String name, long[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(ANSIColor[] colors, String name, long[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | stack(QlLevel level, String name, long[] ary, int depth) Writes stack output, with the default foreground and background. | public static boolean | stack(QlLevel level, ANSIColor color, String name, long[] ary, int depth) Writes stack output, with the specified color. | public static boolean | stack(QlLevel level, ANSIColor[] colors, String name, long[] ary, int depth) Writes stack output, with the specified colors. | public static boolean | start(String msg) | public static boolean | start() | public static boolean | time(String msg) | public static boolean | time() | public static boolean | underline(String msg) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String msg) Writes logging output, with underline foreground on the default background. | public static boolean | underline(Object obj) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, Object obj) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, Object obj) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, Object obj) Writes logging output, with underline foreground on the default background. | public static boolean | underline(byte b) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, byte b) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, byte b) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, byte b) Writes logging output, with underline foreground on the default background. | public static boolean | underline(char c) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, char c) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, char c) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, char c) Writes logging output, with underline foreground on the default background. | public static boolean | underline(double d) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, double d) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, double d) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, double d) Writes logging output, with underline foreground on the default background. | public static boolean | underline(float f) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, float f) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, float f) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, float f) Writes logging output, with underline foreground on the default background. | public static boolean | underline(int i) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, int i) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, int i) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, int i) Writes logging output, with underline foreground on the default background. | public static boolean | underline(long l) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, long l) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, long l) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, long l) Writes logging output, with underline foreground on the default background. | public static boolean | underline(Object[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, Object[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, Object[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, Object[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(byte[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, byte[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, byte[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, byte[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(char[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, char[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, char[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, char[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(double[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, double[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, double[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, double[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(float[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, float[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, float[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, float[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(int[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, int[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, int[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, int[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(long[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, long[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(String name, long[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underline(QlLevel level, String name, long[] ary) Writes logging output, with underline foreground on the default background. | public static boolean | underscore(String msg) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String msg) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(Object obj) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, Object obj) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, Object obj) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, Object obj) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(byte b) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, byte b) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, byte b) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, byte b) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(char c) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, char c) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, char c) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, char c) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(double d) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, double d) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, double d) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, double d) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(float f) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, float f) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, float f) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, float f) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(int i) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, int i) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, int i) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, int i) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(long l) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, long l) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, long l) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, long l) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(Object[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, Object[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, Object[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, Object[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(byte[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, byte[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, byte[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, byte[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(char[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, char[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, char[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, char[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(double[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, double[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, double[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, double[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(float[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, float[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, float[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, float[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(int[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, int[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, int[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, int[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(long[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, long[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(String name, long[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | underscore(QlLevel level, String name, long[] ary) Writes logging output, with underscore foreground on the default background. | public static boolean | verbose() | public static boolean | white(String msg) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String msg) Writes logging output, with white foreground on the default background. | public static boolean | white(Object obj) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, Object obj) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, Object obj) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, Object obj) Writes logging output, with white foreground on the default background. | public static boolean | white(byte b) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, byte b) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, byte b) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, byte b) Writes logging output, with white foreground on the default background. | public static boolean | white(char c) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, char c) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, char c) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, char c) Writes logging output, with white foreground on the default background. | public static boolean | white(double d) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, double d) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, double d) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, double d) Writes logging output, with white foreground on the default background. | public static boolean | white(float f) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, float f) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, float f) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, float f) Writes logging output, with white foreground on the default background. | public static boolean | white(int i) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, int i) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, int i) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, int i) Writes logging output, with white foreground on the default background. | public static boolean | white(long l) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, long l) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, long l) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, long l) Writes logging output, with white foreground on the default background. | public static boolean | white(Object[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, Object[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, Object[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, Object[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(byte[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, byte[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, byte[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, byte[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(char[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, char[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, char[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, char[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(double[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, double[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, double[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, double[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(float[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, float[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, float[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, float[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(int[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, int[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, int[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, int[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(long[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, long[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(String name, long[] ary) Writes logging output, with white foreground on the default background. | public static boolean | white(QlLevel level, String name, long[] ary) Writes logging output, with white foreground on the default background. | public static boolean | yellow(String msg) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String msg) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(Object obj) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, Object obj) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, Object obj) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, Object obj) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(byte b) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, byte b) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, byte b) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, byte b) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(char c) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, char c) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, char c) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, char c) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(double d) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, double d) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, double d) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, double d) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(float f) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, float f) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, float f) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, float f) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(int i) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, int i) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, int i) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, int i) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(long l) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, long l) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, long l) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, long l) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(Object[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, Object[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, Object[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, Object[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(byte[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, byte[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, byte[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, byte[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(char[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, char[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, char[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, char[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(double[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, double[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, double[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, double[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(float[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, float[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, float[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, float[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(int[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, int[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, int[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, int[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(long[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, long[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(String name, long[] ary) Writes logging output, with yellow foreground on the default background. | public static boolean | yellow(QlLevel level, String name, long[] ary) Writes logging output, with yellow foreground on the default background. |
BLINK | final public static ANSIColor BLINK(Code) | | The code for the blink attribute.
|
CLASS_WIDTH_PROPERTY_KEY | final public static String CLASS_WIDTH_PROPERTY_KEY(Code) | | |
COLUMNAR_PROPERTY_KEY | final public static String COLUMNAR_PROPERTY_KEY(Code) | | |
CONCEALED | final public static ANSIColor CONCEALED(Code) | | The code for hidden text.
|
DEFAULT_STACK_DEPTH | final protected static int DEFAULT_STACK_DEPTH(Code) | | The default number of stack trace elements to display in a stack.
|
FILE_WIDTH_PROPERTY_KEY | final public static String FILE_WIDTH_PROPERTY_KEY(Code) | | |
LEVEL_PROPERTY_KEY | final public static String LEVEL_PROPERTY_KEY(Code) | | |
LINE_WIDTH_PROPERTY_KEY | final public static String LINE_WIDTH_PROPERTY_KEY(Code) | | |
MAGENTA | final public static ANSIColor MAGENTA(Code) | | The code for magenta text.
|
METHOD_WIDTH_PROPERTY_KEY | final public static String METHOD_WIDTH_PROPERTY_KEY(Code) | | |
NONE | final public static ANSIColor NONE(Code) | | The code for no color applied.
|
NO_COLOR | final public static ANSIColor NO_COLOR(Code) | | An object denoting no color.
|
NO_COLORS | final public static ANSIColor[] NO_COLORS(Code) | | An array denoting no colors.
|
NO_OUTPUT | final public static int NO_OUTPUT(Code) | | |
ON_BLACK | final public static ANSIColor ON_BLACK(Code) | | The code for black background.
|
ON_BLUE | final public static ANSIColor ON_BLUE(Code) | | The code for blue background.
|
ON_CYAN | final public static ANSIColor ON_CYAN(Code) | | The code for cyan background.
|
ON_GREEN | final public static ANSIColor ON_GREEN(Code) | | The code for green background.
|
ON_MAGENTA | final public static ANSIColor ON_MAGENTA(Code) | | The code for magenta background.
|
ON_RED | final public static ANSIColor ON_RED(Code) | | The code for red background.
|
ON_WHITE | final public static ANSIColor ON_WHITE(Code) | | The code for white background.
|
ON_YELLOW | final public static ANSIColor ON_YELLOW(Code) | | The code for yellow background.
|
QUIET | final public static int QUIET(Code) | | |
RESET | final public static ANSIColor RESET(Code) | | The code for reset of colors and decorations.
|
REVERSE | final public static ANSIColor REVERSE(Code) | | The code for reversed text.
|
SHOW_CLASSES_PROPERTY_KEY | final public static String SHOW_CLASSES_PROPERTY_KEY(Code) | | |
SHOW_FILES_PROPERTY_KEY | final public static String SHOW_FILES_PROPERTY_KEY(Code) | | |
UNDERLINE | final public static ANSIColor UNDERLINE(Code) | | The code for underline (AKA underscore).
|
UNDERSCORE | final public static ANSIColor UNDERSCORE(Code) | | The code for underscore (AKA underline).
|
VERBOSE | final public static int VERBOSE(Code) | | |
VERBOSE_PROPERTY_KEY | final public static String VERBOSE_PROPERTY_KEY(Code) | | |
VERSION | final public static String VERSION(Code) | | The version of the Qualog module.
|
addClassSkipped | public static void addClassSkipped(Class cls)(Code) | | |
addClassSkipped | public static void addClassSkipped(String clsName)(Code) | | |
black | public static boolean black(String msg)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String msg)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(Object obj)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, Object obj)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, Object obj)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(byte b)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, byte b)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, byte b)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, byte b)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(char c)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, char c)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, char c)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, char c)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(double d)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, double d)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, double d)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, double d)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(float f)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, float f)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, float f)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, float f)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(int i)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, int i)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, int i)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, int i)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(long l)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, long l)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, long l)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, long l)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(Object[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, Object[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, Object[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(byte[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, byte[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, byte[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(char[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, char[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, char[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(double[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, double[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, double[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(float[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, float[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, float[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(int[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, int[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, int[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(long[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, long[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(String name, long[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
black | public static boolean black(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with black foreground on the default background.
|
blink | public static boolean blink(String msg)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String msg)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(Object obj)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, Object obj)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, Object obj)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(byte b)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, byte b)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, byte b)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, byte b)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(char c)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, char c)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, char c)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, char c)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(double d)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, double d)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, double d)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, double d)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(float f)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, float f)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, float f)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, float f)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(int i)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, int i)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, int i)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, int i)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(long l)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, long l)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, long l)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, long l)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(Object[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, Object[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, Object[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(byte[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, byte[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, byte[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(char[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, char[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, char[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(double[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, double[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, double[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(float[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, float[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, float[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(int[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, int[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, int[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(long[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, long[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(String name, long[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blink | public static boolean blink(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with blink foreground on the default background.
|
blue | public static boolean blue(String msg)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String msg)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(Object obj)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, Object obj)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, Object obj)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(byte b)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, byte b)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, byte b)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, byte b)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(char c)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, char c)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, char c)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, char c)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(double d)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, double d)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, double d)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, double d)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(float f)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, float f)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, float f)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, float f)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(int i)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, int i)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, int i)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, int i)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(long l)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, long l)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, long l)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, long l)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(Object[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, Object[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, Object[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(byte[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, byte[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, byte[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(char[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, char[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, char[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(double[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, double[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, double[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(float[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, float[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, float[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(int[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, int[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, int[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(long[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, long[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(String name, long[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
blue | public static boolean blue(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with blue foreground on the default background.
|
bold | public static boolean bold(String msg)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String msg)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(Object obj)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, Object obj)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, Object obj)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(byte b)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, byte b)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, byte b)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, byte b)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(char c)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, char c)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, char c)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, char c)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(double d)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, double d)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, double d)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, double d)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(float f)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, float f)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, float f)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, float f)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(int i)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, int i)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, int i)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, int i)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(long l)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, long l)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, long l)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, long l)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(Object[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, Object[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, Object[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(byte[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, byte[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, byte[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(char[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, char[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, char[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(double[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, double[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, double[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(float[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, float[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, float[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(int[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, int[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, int[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(long[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, long[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(String name, long[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
bold | public static boolean bold(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with bold foreground on the default background.
|
clear | public static void clear()(Code) | | |
clearClassColor | public static void clearClassColor(String className)(Code) | | |
concealed | public static boolean concealed(String msg)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String msg)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(Object obj)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, Object obj)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, Object obj)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(byte b)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, byte b)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, byte b)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, byte b)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(char c)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, char c)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, char c)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, char c)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(double d)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, double d)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, double d)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, double d)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(float f)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, float f)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, float f)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, float f)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(int i)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, int i)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, int i)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, int i)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(long l)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, long l)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, long l)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, long l)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(Object[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, Object[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, Object[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(byte[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, byte[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, byte[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(char[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, char[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, char[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(double[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, double[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, double[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(float[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, float[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, float[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(int[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, int[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, int[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(long[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, long[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(String name, long[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
concealed | public static boolean concealed(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with concealed foreground on the default background.
|
cyan | public static boolean cyan(String msg)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String msg)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(Object obj)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, Object obj)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, Object obj)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(byte b)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, byte b)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, byte b)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, byte b)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(char c)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, char c)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, char c)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, char c)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(double d)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, double d)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, double d)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, double d)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(float f)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, float f)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, float f)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, float f)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(int i)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, int i)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, int i)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, int i)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(long l)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, long l)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, long l)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, long l)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(Object[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, Object[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, Object[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(byte[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, byte[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, byte[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(char[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, char[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, char[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(double[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, double[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, double[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(float[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, float[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, float[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(int[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, int[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, int[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(long[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, long[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(String name, long[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
cyan | public static boolean cyan(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with cyan foreground on the default background.
|
end | public static boolean end()(Code) | | |
green | public static boolean green(String msg)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String msg)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(Object obj)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, Object obj)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, Object obj)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(byte b)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, byte b)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, byte b)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, byte b)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(char c)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, char c)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, char c)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, char c)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(double d)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, double d)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, double d)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, double d)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(float f)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, float f)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, float f)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, float f)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(int i)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, int i)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, int i)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, int i)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(long l)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, long l)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, long l)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, long l)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(Object[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, Object[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, Object[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(byte[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, byte[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, byte[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(char[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, char[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, char[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(double[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, double[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, double[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(float[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, float[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, float[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(int[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, int[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, int[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(long[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, long[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(String name, long[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
green | public static boolean green(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with green foreground on the default background.
|
log | public static boolean log()(Code) | | Writes an empty log message.
|
log | public static boolean log(String msg)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String msg)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String msg)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(Object obj)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, Object obj)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, Object obj)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(String name, Object obj)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(byte b)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, byte b)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, byte b)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, byte b)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, byte b)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, byte b)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, byte b)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, byte b)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, byte b)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(char c)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, char c)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, char c)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, char c)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, char c)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, char c)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, char c)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, char c)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, char c)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(double d)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, double d)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, double d)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, double d)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, double d)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, double d)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, double d)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, double d)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, double d)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(float f)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, float f)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, float f)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, float f)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, float f)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, float f)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, float f)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, float f)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, float f)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(int i)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, int i)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, int i)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, int i)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, int i)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, int i)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, int i)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, int i)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(long l)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, long l)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, long l)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, long l)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, long l)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, long l)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, long l)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, long l)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, long l)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(Object[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, Object[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, Object[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(byte[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, byte[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, byte[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, byte[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, byte[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, byte[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, byte[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, String name, byte[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, byte[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(char[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, char[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, char[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, char[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, char[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, char[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, char[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, char[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, String name, char[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, char[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(double[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, double[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, double[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, double[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, double[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, double[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, double[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, double[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, String name, double[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, double[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(float[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, float[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, float[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, float[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, float[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, float[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, float[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, float[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, String name, float[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, float[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(int[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, int[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, int[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, int[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, int[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, int[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, int[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, int[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, int[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(long[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, long[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, long[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, long[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, long[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(String name, long[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(ANSIColor color, String name, long[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(ANSIColor[] colors, String name, long[] ary)(Code) | | Writes logging output, with the specified colors.
|
log | public static boolean log(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground and background.
|
log | public static boolean log(QlLevel level, ANSIColor color, String name, long[] ary)(Code) | | Writes logging output, with the specified color.
|
log | public static boolean log(QlLevel level, ANSIColor[] colors, String name, long[] ary)(Code) | | Writes logging output, with the specified colors.
|
magenta | public static boolean magenta(String msg)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String msg)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(Object obj)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, Object obj)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, Object obj)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(byte b)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, byte b)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, byte b)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, byte b)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(char c)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, char c)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, char c)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, char c)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(double d)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, double d)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, double d)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, double d)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(float f)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, float f)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, float f)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, float f)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(int i)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, int i)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, int i)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, int i)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(long l)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, long l)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, long l)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, long l)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(Object[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, Object[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, Object[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(byte[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, byte[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, byte[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(char[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, char[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, char[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(double[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, double[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, double[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(float[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, float[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, float[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(int[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, int[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, int[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(long[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, long[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(String name, long[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
magenta | public static boolean magenta(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with magenta foreground on the default background.
|
none | public static boolean none(String msg)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String msg)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(Object obj)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, Object obj)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, Object obj)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(byte b)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, byte b)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, byte b)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, byte b)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(char c)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, char c)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, char c)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, char c)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(double d)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, double d)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, double d)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, double d)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(float f)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, float f)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, float f)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, float f)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(int i)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, int i)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, int i)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, int i)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(long l)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, long l)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, long l)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, long l)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(Object[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, Object[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, Object[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(byte[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, byte[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, byte[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(char[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, char[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, char[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(double[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, double[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, double[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(float[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, float[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, float[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(int[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, int[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, int[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(long[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, long[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(String name, long[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
none | public static boolean none(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with none foreground on the default background.
|
onBlack | public static boolean onBlack(String msg)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(Object obj)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(byte b)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, byte b)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(char c)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, char c)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(double d)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, double d)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(float f)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, float f)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(int i)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, int i)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(long l)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, long l)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(Object[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(byte[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(char[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(double[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(float[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(int[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(long[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlack | public static boolean onBlack(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a black background.
|
onBlue | public static boolean onBlue(String msg)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(Object obj)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(byte b)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, byte b)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(char c)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, char c)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(double d)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, double d)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(float f)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, float f)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(int i)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, int i)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(long l)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, long l)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(Object[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(byte[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(char[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(double[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(float[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(int[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(long[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onBlue | public static boolean onBlue(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a blue background.
|
onCyan | public static boolean onCyan(String msg)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(Object obj)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(byte b)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, byte b)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(char c)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, char c)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(double d)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, double d)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(float f)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, float f)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(int i)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, int i)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(long l)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, long l)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(Object[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(byte[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(char[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(double[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(float[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(int[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(long[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onCyan | public static boolean onCyan(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a cyan background.
|
onGreen | public static boolean onGreen(String msg)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(Object obj)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(byte b)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, byte b)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(char c)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, char c)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(double d)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, double d)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(float f)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, float f)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(int i)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, int i)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(long l)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, long l)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(Object[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(byte[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(char[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(double[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(float[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(int[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(long[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onGreen | public static boolean onGreen(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a green background.
|
onMagenta | public static boolean onMagenta(String msg)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(Object obj)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(byte b)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, byte b)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(char c)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, char c)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(double d)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, double d)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(float f)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, float f)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(int i)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, int i)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(long l)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, long l)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(Object[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(byte[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(char[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(double[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(float[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(int[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(long[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onMagenta | public static boolean onMagenta(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a magenta background.
|
onRed | public static boolean onRed(String msg)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(Object obj)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(byte b)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, byte b)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(char c)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, char c)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(double d)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, double d)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(float f)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, float f)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(int i)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, int i)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(long l)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, long l)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(Object[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(byte[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(char[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(double[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(float[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(int[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(long[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onRed | public static boolean onRed(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a red background.
|
onWhite | public static boolean onWhite(String msg)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(Object obj)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(byte b)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, byte b)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(char c)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, char c)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(double d)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, double d)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(float f)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, float f)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(int i)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, int i)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(long l)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, long l)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(Object[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(byte[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(char[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(double[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(float[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(int[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(long[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onWhite | public static boolean onWhite(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a white background.
|
onYellow | public static boolean onYellow(String msg)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String msg)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(Object obj)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, Object obj)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, Object obj)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(byte b)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, byte b)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, byte b)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, byte b)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(char c)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, char c)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, char c)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, char c)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(double d)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, double d)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, double d)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, double d)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(float f)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, float f)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, float f)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, float f)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(int i)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, int i)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, int i)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, int i)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(long l)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, long l)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, long l)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, long l)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(Object[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, Object[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(byte[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, byte[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(char[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, char[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(double[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, double[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(float[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, float[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(int[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, int[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(long[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, long[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
onYellow | public static boolean onYellow(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with the default foreground on a yellow background.
|
red | public static boolean red(String msg)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String msg)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(Object obj)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, Object obj)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, Object obj)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(byte b)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, byte b)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, byte b)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, byte b)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(char c)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, char c)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, char c)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, char c)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(double d)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, double d)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, double d)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, double d)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(float f)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, float f)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, float f)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, float f)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(int i)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, int i)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, int i)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, int i)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(long l)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, long l)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, long l)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, long l)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(Object[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, Object[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, Object[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(byte[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, byte[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, byte[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(char[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, char[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, char[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(double[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, double[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, double[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(float[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, float[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, float[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(int[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, int[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, int[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(long[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, long[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(String name, long[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
red | public static boolean red(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with red foreground on the default background.
|
reset | public static void reset()(Code) | | |
reverse | public static boolean reverse(String msg)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String msg)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(Object obj)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, Object obj)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, Object obj)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(byte b)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, byte b)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, byte b)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, byte b)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(char c)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, char c)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, char c)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, char c)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(double d)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, double d)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, double d)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, double d)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(float f)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, float f)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, float f)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, float f)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(int i)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, int i)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, int i)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, int i)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(long l)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, long l)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, long l)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, long l)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(Object[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, Object[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, Object[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(byte[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, byte[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, byte[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(char[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, char[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, char[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(double[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, double[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, double[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(float[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, float[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, float[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(int[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, int[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, int[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(long[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, long[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(String name, long[] ary)(Code) | | Writes logging output, with reverse foreground on the default background.
|
reverse | public static boolean reverse(QlLevel level, String name, long[] ary)(Code) | | 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)(Code) | | |
setClassWidth | public static void setClassWidth(int classWidth)(Code) | | |
setColumns | public static void setColumns(boolean cols)(Code) | | |
setDisabled | public static void setDisabled(Class cls)(Code) | | |
setFileWidth | public static void setFileWidth(int fileWidth)(Code) | | |
setFunctionWidth | public static void setFunctionWidth(int functionWidth)(Code) | | |
setLineWidth | public static void setLineWidth(int lineWidth)(Code) | | |
setOutput | public static void setOutput(int type, QlLevel level)(Code) | | |
setQuiet | public static void setQuiet(boolean quiet)(Code) | | |
setVerbose | public static void setVerbose(boolean verbose)(Code) | | |
stack | public static boolean stack()(Code) | | Writes an empty stack message.
|
stack | public static boolean stack(String msg)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String msg)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String msg)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String msg)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(Object obj)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, Object obj)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, Object obj)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, Object obj)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(String name, Object obj)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, String name, Object obj)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(byte b)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, byte b)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, byte b)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, byte b)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, byte b)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, byte b)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, byte b)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, byte b)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, byte b)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, byte b)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte b)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(char c)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, char c)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, char c)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, char c)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, char c)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, char c)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, char c)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, char c)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, char c)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, char c)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char c)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(double d)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, double d)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, double d)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, double d)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, double d)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, double d)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, double d)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, double d)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, double d)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, double d)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, double d)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double d)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(float f)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, float f)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, float f)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, float f)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, float f)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, float f)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, float f)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, float f)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, float f)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, float f)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float f)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(int i)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, int i)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, int i)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, int i)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, int i)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, int i)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, int i)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, int i)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, int i)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, int i)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int i)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(long l)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, long l)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, long l)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, long l)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, long l)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, long l)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, long l)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, long l)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, long l)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, long l)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long l)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(Object[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, Object[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, Object[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, Object[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(String name, Object[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, String name, Object[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(byte[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, byte[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, byte[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, byte[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, byte[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, byte[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, byte[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, byte[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, byte[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, byte[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, byte[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(char[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, char[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, char[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, char[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, char[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, char[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, char[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, char[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, char[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, char[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, char[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(double[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, double[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, double[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, double[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, double[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, double[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, double[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, double[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, double[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, double[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, double[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(float[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, float[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, float[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, float[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, float[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, float[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, float[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, float[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, float[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, float[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, float[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(int[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, int[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, int[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, int[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, int[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, int[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, int[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, int[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, int[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, int[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, int[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(long[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, long[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, long[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, long[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, long[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, long[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, long[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, long[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, long[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, long[] ary)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, long[] ary)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long[] ary)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(Object obj, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, Object obj, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, Object obj, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, Object obj, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, Object obj, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, Object obj, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, Object obj, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, Object obj, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, Object obj, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, Object obj, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(byte b, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, byte b, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, byte b, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, byte b, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, byte b, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, byte b, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, byte b, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, byte b, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, byte b, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, byte b, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, byte b, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte b, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(char c, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, char c, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, char c, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, char c, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, char c, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, char c, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, char c, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, char c, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, char c, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, char c, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, char c, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char c, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(double d, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, double d, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, double d, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, double d, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, double d, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, double d, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, double d, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, double d, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, double d, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, double d, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, double d, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double d, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(float f, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, float f, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, float f, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, float f, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, float f, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, float f, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, float f, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, float f, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, float f, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, float f, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, float f, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float f, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(int i, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, int i, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, int i, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, int i, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, int i, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, int i, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, int i, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, int i, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, int i, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, int i, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, int i, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int i, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(long l, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, long l, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, long l, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, long l, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, long l, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, long l, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, long l, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, long l, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, long l, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, long l, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, long l, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long l, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(Object[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, Object[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, Object[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, Object[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, Object[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, Object[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, Object[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, Object[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, Object[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, Object[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(byte[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, byte[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, byte[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, byte[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, byte[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, byte[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, byte[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, byte[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, byte[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, byte[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, byte[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(char[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, char[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, char[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, char[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, char[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, char[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, char[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, char[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, char[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, char[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, char[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(double[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, double[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, double[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, double[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, double[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, double[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, double[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, double[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, double[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, double[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, double[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(float[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, float[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, float[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, float[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, float[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, float[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, float[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, float[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, float[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, float[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, float[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(int[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, int[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, int[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, int[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, int[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, int[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, int[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, int[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, int[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, int[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, int[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(long[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, long[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, long[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, long[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, long[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, long[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(String name, long[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(ANSIColor color, String name, long[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(ANSIColor[] colors, String name, long[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
stack | public static boolean stack(QlLevel level, String name, long[] ary, int depth)(Code) | | Writes stack output, with the default foreground and background.
|
stack | public static boolean stack(QlLevel level, ANSIColor color, String name, long[] ary, int depth)(Code) | | Writes stack output, with the specified color.
|
stack | public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long[] ary, int depth)(Code) | | Writes stack output, with the specified colors.
|
start | public static boolean start()(Code) | | |
time | public static boolean time()(Code) | | |
underline | public static boolean underline(String msg)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String msg)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(Object obj)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, Object obj)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, Object obj)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(byte b)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, byte b)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, byte b)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, byte b)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(char c)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, char c)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, char c)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, char c)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(double d)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, double d)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, double d)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, double d)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(float f)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, float f)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, float f)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, float f)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(int i)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, int i)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, int i)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, int i)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(long l)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, long l)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, long l)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, long l)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(Object[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, Object[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, Object[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(byte[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, byte[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, byte[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(char[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, char[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, char[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(double[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, double[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, double[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(float[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, float[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, float[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(int[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, int[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, int[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(long[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, long[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(String name, long[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underline | public static boolean underline(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with underline foreground on the default background.
|
underscore | public static boolean underscore(String msg)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String msg)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(Object obj)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, Object obj)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, Object obj)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(byte b)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, byte b)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, byte b)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, byte b)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(char c)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, char c)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, char c)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, char c)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(double d)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, double d)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, double d)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, double d)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(float f)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, float f)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, float f)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, float f)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(int i)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, int i)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, int i)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, int i)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(long l)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, long l)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, long l)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, long l)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(Object[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, Object[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, Object[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(byte[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, byte[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, byte[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(char[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, char[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, char[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(double[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, double[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, double[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(float[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, float[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, float[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(int[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, int[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, int[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(long[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, long[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(String name, long[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
underscore | public static boolean underscore(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with underscore foreground on the default background.
|
verbose | public static boolean verbose()(Code) | | |
white | public static boolean white(String msg)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String msg)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(Object obj)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, Object obj)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, Object obj)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(byte b)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, byte b)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, byte b)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, byte b)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(char c)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, char c)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, char c)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, char c)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(double d)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, double d)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, double d)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, double d)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(float f)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, float f)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, float f)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, float f)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(int i)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, int i)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, int i)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, int i)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(long l)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, long l)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, long l)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, long l)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(Object[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, Object[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, Object[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(byte[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, byte[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, byte[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(char[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, char[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, char[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(double[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, double[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, double[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(float[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, float[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, float[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(int[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, int[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, int[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(long[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, long[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(String name, long[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
white | public static boolean white(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with white foreground on the default background.
|
yellow | public static boolean yellow(String msg)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String msg)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(Object obj)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, Object obj)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, Object obj)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, Object obj)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(byte b)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, byte b)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, byte b)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, byte b)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(char c)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, char c)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, char c)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, char c)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(double d)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, double d)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, double d)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, double d)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(float f)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, float f)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, float f)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, float f)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(int i)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, int i)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, int i)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, int i)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(long l)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, long l)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, long l)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, long l)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(Object[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, Object[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, Object[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, Object[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(byte[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, byte[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, byte[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, byte[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(char[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, char[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, char[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, char[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(double[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, double[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, double[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, double[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(float[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, float[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, float[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, float[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(int[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, int[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, int[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, int[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(long[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, long[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(String name, long[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
yellow | public static boolean yellow(QlLevel level, String name, long[] ary)(Code) | | Writes logging output, with yellow foreground on the default background.
|
|
|