public class Qualog
extends java.lang.Object
Provides quasi-logging support, more akin to debugging/development output and trace statements than logging per se. Supports both tabular and non-tabular output formats, the former being with the files, line numbers, classes, and methods being arranged so that they line up vertically. That format, I've found, is better for larger projects (500M+ LOC), in which class names and package hierarchies tend to be larger. The non-tabular format seems better for smaller projects.
Colors can be enabled and disabled, and associated with classes, methods, files, and levels. They are designed to work on terminals that support ANSI escape codes. On platforms without this -- e.g., Windows -- colorization is disabled.
Unlike real logging mechanisms, there is no support for log rotations. I recommend log4j for that. This package is mainly for programmers who want trace statements from a Java program. See Kernighan and Pike for a defense of those of us who develop and debug programs mainly relying on the print statement.
There is a serious performance hit to using this package, since each output statement results in an exception being created.
Modifier and Type | Field and Description |
---|---|
static ANSIColor |
BLACK
The code for black text.
|
static ANSIColor |
BLINK
The code for the blink attribute.
|
static ANSIColor |
BLUE
The code for blue text.
|
static ANSIColor |
BOLD
The code for bold decoration.
|
static java.lang.String |
CLASS_WIDTH_PROPERTY_KEY |
static java.lang.String |
COLUMNAR_PROPERTY_KEY |
static ANSIColor |
CONCEALED
The code for hidden text.
|
static ANSIColor |
CYAN
The code for cyan text.
|
protected static int |
DEFAULT_STACK_DEPTH
The default number of stack trace elements to display in a stack.
|
static java.lang.String |
FILE_WIDTH_PROPERTY_KEY |
static ANSIColor |
GREEN
The code for green text.
|
static java.lang.String |
LEVEL_PROPERTY_KEY |
static org.incava.qualog.QlLevel |
LEVEL0 |
static org.incava.qualog.QlLevel |
LEVEL1 |
static org.incava.qualog.QlLevel |
LEVEL2 |
static org.incava.qualog.QlLevel |
LEVEL3 |
static org.incava.qualog.QlLevel |
LEVEL4 |
static org.incava.qualog.QlLevel |
LEVEL5 |
static org.incava.qualog.QlLevel |
LEVEL6 |
static org.incava.qualog.QlLevel |
LEVEL7 |
static org.incava.qualog.QlLevel |
LEVEL8 |
static org.incava.qualog.QlLevel |
LEVEL9 |
static java.lang.String |
LINE_WIDTH_PROPERTY_KEY |
static ANSIColor |
MAGENTA
The code for magenta text.
|
static java.lang.String |
METHOD_WIDTH_PROPERTY_KEY |
static ANSIColor |
NO_COLOR
An object denoting no color.
|
static ANSIColor[] |
NO_COLORS
An array denoting no colors.
|
static int |
NO_OUTPUT |
static ANSIColor |
NONE
The code for no color applied.
|
static ANSIColor |
ON_BLACK
The code for black background.
|
static ANSIColor |
ON_BLUE
The code for blue background.
|
static ANSIColor |
ON_CYAN
The code for cyan background.
|
static ANSIColor |
ON_GREEN
The code for green background.
|
static ANSIColor |
ON_MAGENTA
The code for magenta background.
|
static ANSIColor |
ON_RED
The code for red background.
|
static ANSIColor |
ON_WHITE
The code for white background.
|
static ANSIColor |
ON_YELLOW
The code for yellow background.
|
static int |
QUIET |
static ANSIColor |
RED
The code for red text.
|
static ANSIColor |
RESET
The code for reset of colors and decorations.
|
static ANSIColor |
REVERSE
The code for reversed text.
|
static java.lang.String |
SHOW_CLASSES_PROPERTY_KEY |
static java.lang.String |
SHOW_FILES_PROPERTY_KEY |
protected static QlTimer |
timer |
static ANSIColor |
UNDERLINE
The code for underline (AKA underscore).
|
static ANSIColor |
UNDERSCORE
The code for underscore (AKA underline).
|
static int |
VERBOSE |
static java.lang.String |
VERBOSE_PROPERTY_KEY |
static java.lang.String |
VERSION
The version of the Qualog module.
|
static ANSIColor |
WHITE
The code for white text.
|
protected static QlWriter |
writer |
static ANSIColor |
YELLOW
The code for yellow text.
|
Constructor and Description |
---|
Qualog() |
Modifier and Type | Method and Description |
---|---|
static void |
addClassSkipped(java.lang.Class cls) |
static void |
addClassSkipped(java.lang.String clsName) |
static void |
addFilter(QlFilter filter) |
static boolean |
black(byte b)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(byte[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(char c)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(char[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(double d)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(double[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(float f)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(float[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(int i)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(int[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(long l)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(long[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.Object obj)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String msg)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
byte b)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
byte[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
char c)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
char[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
double d)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
double[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
float f)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
float[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
int i)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
int[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
long l)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
long[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
java.lang.Object obj)
Writes logging output, with black foreground on the default background.
|
static boolean |
black(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with black foreground on the default background.
|
static boolean |
blink(byte b)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(byte[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(char c)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(char[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(double d)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(double[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(float f)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(float[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(int i)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(int[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(long l)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(long[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.Object obj)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String msg)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
byte b)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
byte[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
char c)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
char[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
double d)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
double[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
float f)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
float[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
int i)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
int[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
long l)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
long[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
java.lang.Object obj)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blink(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with blink foreground on the default background.
|
static boolean |
blue(byte b)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(byte[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(char c)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(char[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(double d)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(double[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(float f)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(float[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(int i)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(int[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(long l)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(long[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.Object obj)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String msg)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
byte b)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
byte[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
char c)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
char[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
double d)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
double[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
float f)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
float[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
int i)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
int[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
long l)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
long[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
java.lang.Object obj)
Writes logging output, with blue foreground on the default background.
|
static boolean |
blue(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with blue foreground on the default background.
|
static boolean |
bold(byte b)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(byte[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(char c)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(char[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(double d)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(double[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(float f)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(float[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(int i)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(int[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(long l)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(long[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.Object obj)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String msg)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
byte b)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
byte[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
char c)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
char[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
double d)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
double[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
float f)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
float[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
int i)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
int[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
long l)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
long[] ary)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
java.lang.Object obj)
Writes logging output, with bold foreground on the default background.
|
static boolean |
bold(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with bold foreground on the default background.
|
static void |
clear() |
static void |
clearClassColor(java.lang.String className) |
static boolean |
concealed(byte b)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(byte[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(char c)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(char[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(double d)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(double[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(float f)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(float[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(int i)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(int[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(long l)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(long[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String msg)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
byte b)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
byte[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
char c)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
char[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
double d)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
double[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
float f)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
float[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
int i)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
int[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
long l)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
long[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
java.lang.Object obj)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
concealed(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with concealed foreground on the default background.
|
static boolean |
cyan(byte b)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(byte[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(char c)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(char[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(double d)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(double[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(float f)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(float[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(int i)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(int[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(long l)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(long[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String msg)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
byte b)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
byte[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
char c)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
char[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
double d)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
double[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
float f)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
float[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
int i)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
int[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
long l)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
long[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
java.lang.Object obj)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
cyan(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with cyan foreground on the default background.
|
static boolean |
end() |
static boolean |
end(java.lang.String msg) |
static int |
findStackStart(java.lang.StackTraceElement[] stack) |
protected static java.lang.StackTraceElement[] |
getStack(int depth) |
static boolean |
green(byte b)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(byte[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(char c)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(char[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(double d)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(double[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(float f)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(float[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(int i)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(int[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(long l)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(long[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.Object obj)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String msg)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
byte b)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
byte[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
char c)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
char[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
double d)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
double[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
float f)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
float[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
int i)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
int[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
long l)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
long[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
java.lang.Object obj)
Writes logging output, with green foreground on the default background.
|
static boolean |
green(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with green foreground on the default background.
|
static boolean |
isLoggable(org.incava.qualog.QlLevel level) |
static boolean |
log()
Writes an empty log message.
|
static boolean |
log(ANSIColor[] colors,
byte b)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
byte[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
char c)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
char[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
double d)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
double[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
float f)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
float[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
int i)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
int[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
long l)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
long[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.Object obj)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.Object[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String msg)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
byte b)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
byte[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
char c)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
char[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
double d)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
double[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
float f)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
float[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
int i)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
int[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
long l)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
long[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor[] colors,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(ANSIColor color,
byte b)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
byte[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
char c)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
char[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
double d)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
double[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
float f)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
float[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
int i)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
int[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
long l)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
long[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.Object obj)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.Object[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String msg)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
byte b)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
byte[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
char c)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
char[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
double d)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
double[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
float f)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
float[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
int i)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
int[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
long l)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
long[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the specified color.
|
static boolean |
log(ANSIColor color,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(byte b)
Writes logging output, with the default foreground and background.
|
static boolean |
log(byte[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(char c)
Writes logging output, with the default foreground and background.
|
static boolean |
log(char[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(double d)
Writes logging output, with the default foreground and background.
|
static boolean |
log(double[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(float f)
Writes logging output, with the default foreground and background.
|
static boolean |
log(float[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(int i)
Writes logging output, with the default foreground and background.
|
static boolean |
log(int[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(long l)
Writes logging output, with the default foreground and background.
|
static boolean |
log(long[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.Object obj)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.Object[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
byte b)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
byte[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
char c)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
char[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
double d)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
double[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
float f)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
float[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
int i)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
int[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
long l)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
long[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.Object obj)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.Object[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String msg)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
byte b)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
byte[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
char c)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
char[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
double d)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
double[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
float f)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
float[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
int i)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
int[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
long l)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
long[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the specified colors.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
byte b)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
byte[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
char c)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
char[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
double d)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
double[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
float f)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
float[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
int i)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
int[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
long l)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
long[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.Object obj)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.Object[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String msg)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
byte b)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
byte[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
char c)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
char[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
double d)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
double[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
float f)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
float[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
int i)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
int[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
long l)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
long[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the specified color.
|
static boolean |
log(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground and background.
|
static boolean |
log(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String msg)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
byte b)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
char c)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
double d)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
float f)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
int i)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
long l)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground and background.
|
static boolean |
log(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground and background.
|
static boolean |
magenta(byte b)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(byte[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(char c)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(char[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(double d)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(double[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(float f)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(float[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(int i)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(int[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(long l)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(long[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String msg)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
byte b)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
byte[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
char c)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
char[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
double d)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
double[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
float f)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
float[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
int i)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
int[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
long l)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
long[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
java.lang.Object obj)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
magenta(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with magenta foreground on the default background.
|
static boolean |
none(byte b)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(byte[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(char c)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(char[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(double d)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(double[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(float f)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(float[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(int i)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(int[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(long l)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(long[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.Object obj)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String msg)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
byte b)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
byte[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
char c)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
char[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
double d)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
double[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
float f)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
float[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
int i)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
int[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
long l)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
long[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
java.lang.Object obj)
Writes logging output, with none foreground on the default background.
|
static boolean |
none(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with none foreground on the default background.
|
static boolean |
onBlack(byte b)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(byte[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(char c)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(char[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(double d)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(double[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(float f)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(float[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(int i)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(int[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(long l)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(long[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.Object obj)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String msg)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
char c)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
double d)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
float f)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
int i)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
long l)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlack(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a black background.
|
static boolean |
onBlue(byte b)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(byte[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(char c)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(char[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(double d)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(double[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(float f)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(float[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(int i)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(int[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(long l)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(long[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String msg)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
char c)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
double d)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
float f)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
int i)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
long l)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onBlue(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a blue background.
|
static boolean |
onCyan(byte b)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(byte[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(char c)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(char[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(double d)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(double[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(float f)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(float[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(int i)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(int[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(long l)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(long[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String msg)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
char c)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
double d)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
float f)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
int i)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
long l)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onCyan(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a cyan background.
|
static boolean |
onGreen(byte b)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(byte[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(char c)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(char[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(double d)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(double[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(float f)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(float[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(int i)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(int[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(long l)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(long[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.Object obj)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String msg)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
char c)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
double d)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
float f)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
int i)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
long l)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onGreen(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a green background.
|
static boolean |
onMagenta(byte b)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(byte[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(char c)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(char[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(double d)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(double[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(float f)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(float[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(int i)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(int[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(long l)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(long[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String msg)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
char c)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
double d)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
float f)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
int i)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
long l)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onMagenta(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a magenta background.
|
static boolean |
onRed(byte b)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(byte[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(char c)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(char[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(double d)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(double[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(float f)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(float[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(int i)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(int[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(long l)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(long[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.Object obj)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String msg)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
char c)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
double d)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
float f)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
int i)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
long l)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onRed(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a red background.
|
static boolean |
onWhite(byte b)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(byte[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(char c)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(char[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(double d)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(double[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(float f)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(float[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(int i)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(int[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(long l)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(long[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.Object obj)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String msg)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
char c)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
double d)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
float f)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
int i)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
long l)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onWhite(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a white background.
|
static boolean |
onYellow(byte b)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(byte[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(char c)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(char[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(double d)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(double[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(float f)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(float[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(int i)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(int[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(long l)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(long[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String msg)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
byte b)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
byte[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
char c)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
char[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
double d)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
double[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
float f)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
float[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
int i)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
int[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
long l)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
long[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
java.lang.Object obj)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
onYellow(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with the default foreground on a yellow background.
|
static boolean |
red(byte b)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(byte[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(char c)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(char[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(double d)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(double[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(float f)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(float[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(int i)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(int[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(long l)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(long[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.Object obj)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String msg)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
byte b)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
byte[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
char c)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
char[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
double d)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
double[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
float f)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
float[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
int i)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
int[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
long l)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
long[] ary)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
java.lang.Object obj)
Writes logging output, with red foreground on the default background.
|
static boolean |
red(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with red foreground on the default background.
|
static void |
reset() |
static boolean |
reverse(byte b)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(byte[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(char c)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(char[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(double d)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(double[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(float f)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(float[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(int i)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(int[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(long l)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(long[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String msg)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
byte b)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
byte[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
char c)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
char[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
double d)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
double[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
float f)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
float[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
int i)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
int[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
long l)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
long[] ary)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
java.lang.Object obj)
Writes logging output, with reverse foreground on the default background.
|
static boolean |
reverse(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with reverse foreground on the default background.
|
static void |
set(boolean columns,
int fileWidth,
int lineWidth,
int classWidth,
int funcWidth) |
static void |
setClassColor(ANSIColor color) |
static void |
setClassColor(java.lang.String className,
ANSIColor color) |
static void |
setClassWidth(int classWidth) |
static void |
setColumns(boolean cols) |
static void |
setDisabled(java.lang.Class cls) |
static void |
setFileColor(ANSIColor color) |
static void |
setFileColor(java.lang.String fileName,
ANSIColor color) |
static void |
setFileWidth(int fileWidth) |
static void |
setFunctionWidth(int functionWidth) |
static void |
setLineWidth(int lineWidth) |
static void |
setMethodColor(java.lang.String methodName,
ANSIColor color) |
static void |
setMethodColor(java.lang.String className,
java.lang.String methodName,
ANSIColor color) |
static void |
setOut(java.io.PrintWriter out) |
static void |
setOutput(int type,
org.incava.qualog.QlLevel level) |
static void |
setPackageColor(ANSIColor color) |
static void |
setPackageColor(java.lang.String pkg,
ANSIColor color) |
static void |
setQuiet(boolean quiet) |
static void |
setQuiet(org.incava.qualog.QlLevel level) |
static void |
setVerbose(boolean verbose) |
static boolean |
stack()
Writes an empty stack message.
|
static boolean |
stack(ANSIColor[] colors,
byte b)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
byte[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
byte[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
byte b,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
char c)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
char[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
char[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
char c,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
double d)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
double[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
double[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
double d,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
float f)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
float[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
float[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
float f,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
int i)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
int[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
int[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
int i,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
long l)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
long[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
long[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
long l,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.Object obj)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.Object[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.Object obj,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String msg)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] msgColors,
java.lang.String msg,
ANSIColor fileColor,
ANSIColor classColor,
ANSIColor methodColor,
int numFrames) |
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
byte b)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
byte[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
byte[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
byte b,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
char c)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
char[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
char[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
char c,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
double d)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
double[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
double[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
double d,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
float f)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
float[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
float[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
float f,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
int i)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
int[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
int[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
int i,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
long l)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
long[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
long[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
long l,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
java.lang.Object obj)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
java.lang.Object[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor[] colors,
java.lang.String name,
java.lang.Object obj,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(ANSIColor color,
byte b)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
byte[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
byte[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
byte b,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
char c)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
char[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
char[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
char c,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
double d)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
double[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
double[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
double d,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
float f)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
float[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
float[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
float f,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
int i)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
int[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
int[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
int i,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
long l)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
long[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
long[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
long l,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.Object obj)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.Object[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.Object obj,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String msg)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
byte b)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
byte[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
byte[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
byte b,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
char c)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
char[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
char[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
char c,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
double d)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
double[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
double[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
double d,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
float f)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
float[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
float[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
float f,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
int i)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
int[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
int[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
int i,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
long l)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
long[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
long[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
long l,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
java.lang.Object obj)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
java.lang.Object[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(ANSIColor color,
java.lang.String name,
java.lang.Object obj,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(byte b)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(byte[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(byte[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(byte b,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(char c)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(char[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(char[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(char c,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(double d)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(double[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(double[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(double d,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(float f)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(float[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(float[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(float f,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(int i)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(int[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(int[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(int i,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(long l)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(long[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(long[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(long l,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.Object obj)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.Object[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.Object[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.Object obj,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
byte b)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
byte[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
byte[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
byte b,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
char c)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
char[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
char[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
char c,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
double d)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
double[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
double[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
double d,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
float f)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
float[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
float[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
float f,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
int i)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
int[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
int[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
int i,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
long l)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
long[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
long[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
long l,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.Object obj)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.Object[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.Object obj,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String msg)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel lvl,
ANSIColor[] msgColor,
java.lang.String msg,
ANSIColor fileColor,
ANSIColor classColor,
ANSIColor methodColor,
int numFrames) |
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
byte b)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
byte[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
byte[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
byte b,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
char c)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
char[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
char[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
char c,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
double d)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
double[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
double[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
double d,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
float f)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
float[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
float[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
float f,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
int i)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
int[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
int[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
int i,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
long l)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
long[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
long[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
long l,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
java.lang.Object obj)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
java.lang.Object[] ary)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] msgColors,
java.lang.String name,
java.lang.Object obj,
ANSIColor fileColor,
ANSIColor classColor,
ANSIColor methodColor,
int numFrames) |
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor[] colors,
java.lang.String name,
java.lang.Object obj,
int depth)
Writes stack output, with the specified colors.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
byte b)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
byte[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
byte[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
byte b,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
char c)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
char[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
char[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
char c,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
double d)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
double[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
double[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
double d,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
float f)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
float[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
float[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
float f,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
int i)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
int[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
int[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
int i,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
long l)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
long[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
long[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
long l,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.Object obj)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.Object[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.Object obj,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String msg)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor msgColor,
java.lang.String msg,
ANSIColor fileColor,
ANSIColor classColor,
ANSIColor methodColor,
int numFrames) |
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
byte b)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
byte[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
byte[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
byte b,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
char c)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
char[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
char[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
char c,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
double d)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
double[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
double[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
double d,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
float f)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
float[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
float[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
float f,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
int i)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
int[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
int[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
int i,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
long l)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
long[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
long[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
long l,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
java.lang.Object obj)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
java.lang.Object[] ary)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
java.lang.Object[] ary,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
ANSIColor color,
java.lang.String name,
java.lang.Object obj,
int depth)
Writes stack output, with the specified color.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
byte b)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
byte[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
byte[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
byte b,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
char c)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
char[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
char[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
char c,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
double d)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
double[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
double[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
double d,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
float f)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
float[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
float[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
float f,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
int i)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
int[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
int[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
int i,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
long l)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
long[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
long[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
long l,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.Object[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.Object obj,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
char c,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
double d,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
float f,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
int i,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
long l,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String msg)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
byte b)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
byte[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
byte[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
byte b,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
char c)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
char[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
char[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
char c,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
double d)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
double[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
double[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
double d,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
float f)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
float[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
float[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
float f,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
int i)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
int[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
int[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
int i,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
long l)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
long[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
long[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
long l,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
java.lang.Object obj)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
java.lang.Object[] ary)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
java.lang.Object[] ary,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
stack(java.lang.String name,
java.lang.Object obj,
int depth)
Writes stack output, with the default foreground and background.
|
static boolean |
start() |
static boolean |
start(java.lang.String msg) |
static boolean |
time() |
static boolean |
time(java.lang.String msg) |
static boolean |
underline(byte b)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(byte[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(char c)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(char[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(double d)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(double[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(float f)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(float[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(int i)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(int[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(long l)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(long[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.Object obj)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String msg)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
byte b)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
byte[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
char c)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
char[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
double d)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
double[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
float f)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
float[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
int i)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
int[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
long l)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
long[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
java.lang.Object obj)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underline(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with underline foreground on the default background.
|
static boolean |
underscore(byte b)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(byte[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(char c)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(char[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(double d)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(double[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(float f)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(float[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(int i)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(int[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(long l)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(long[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String msg)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
byte b)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
byte[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
char c)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
char[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
double d)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
double[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
float f)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
float[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
int i)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
int[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
long l)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
long[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
java.lang.Object obj)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
underscore(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with underscore foreground on the default background.
|
static boolean |
verbose() |
static boolean |
white(byte b)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(byte[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(char c)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(char[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(double d)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(double[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(float f)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(float[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(int i)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(int[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(long l)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(long[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.Object obj)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String msg)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
byte b)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
byte[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
char c)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
char[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
double d)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
double[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
float f)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
float[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
int i)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
int[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
long l)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
long[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
java.lang.Object obj)
Writes logging output, with white foreground on the default background.
|
static boolean |
white(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with white foreground on the default background.
|
static boolean |
yellow(byte b)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(byte[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(char c)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(char[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(double d)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(double[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(float f)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(float[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(int i)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(int[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(long l)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(long[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
byte b)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
byte[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
char c)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
char[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
double d)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
double[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
float f)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
float[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
int i)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
int[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
long l)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
long[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String msg)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
byte b)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
byte[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
char c)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
char[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
double d)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
double[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
float f)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
float[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
int i)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
int[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
long l)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
long[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(org.incava.qualog.QlLevel level,
java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String msg)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
byte b)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
byte[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
char c)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
char[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
double d)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
double[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
float f)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
float[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
int i)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
int[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
long l)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
long[] ary)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
java.lang.Object obj)
Writes logging output, with yellow foreground on the default background.
|
static boolean |
yellow(java.lang.String name,
java.lang.Object[] ary)
Writes logging output, with yellow foreground on the default background.
|
public static final java.lang.String VERSION
public static final ANSIColor[] NO_COLORS
public static final ANSIColor NO_COLOR
public static final ANSIColor NONE
public static final ANSIColor RESET
public static final ANSIColor BOLD
public static final ANSIColor UNDERSCORE
public static final ANSIColor UNDERLINE
public static final ANSIColor BLINK
public static final ANSIColor REVERSE
public static final ANSIColor CONCEALED
public static final ANSIColor BLACK
public static final ANSIColor RED
public static final ANSIColor GREEN
public static final ANSIColor YELLOW
public static final ANSIColor BLUE
public static final ANSIColor MAGENTA
public static final ANSIColor CYAN
public static final ANSIColor WHITE
public static final ANSIColor ON_BLACK
public static final ANSIColor ON_RED
public static final ANSIColor ON_GREEN
public static final ANSIColor ON_YELLOW
public static final ANSIColor ON_BLUE
public static final ANSIColor ON_MAGENTA
public static final ANSIColor ON_CYAN
public static final ANSIColor ON_WHITE
public static final java.lang.String CLASS_WIDTH_PROPERTY_KEY
public static final java.lang.String COLUMNAR_PROPERTY_KEY
public static final java.lang.String FILE_WIDTH_PROPERTY_KEY
public static final java.lang.String LEVEL_PROPERTY_KEY
public static final java.lang.String LINE_WIDTH_PROPERTY_KEY
public static final java.lang.String METHOD_WIDTH_PROPERTY_KEY
public static final java.lang.String SHOW_CLASSES_PROPERTY_KEY
public static final java.lang.String SHOW_FILES_PROPERTY_KEY
public static final java.lang.String VERBOSE_PROPERTY_KEY
public static final org.incava.qualog.QlLevel LEVEL0
public static final org.incava.qualog.QlLevel LEVEL1
public static final org.incava.qualog.QlLevel LEVEL2
public static final org.incava.qualog.QlLevel LEVEL3
public static final org.incava.qualog.QlLevel LEVEL4
public static final org.incava.qualog.QlLevel LEVEL5
public static final org.incava.qualog.QlLevel LEVEL6
public static final org.incava.qualog.QlLevel LEVEL7
public static final org.incava.qualog.QlLevel LEVEL8
public static final org.incava.qualog.QlLevel LEVEL9
public static final int NO_OUTPUT
public static final int QUIET
public static final int VERBOSE
protected static final int DEFAULT_STACK_DEPTH
protected static QlWriter writer
protected static QlTimer timer
public static boolean isLoggable(org.incava.qualog.QlLevel level)
public static void setDisabled(java.lang.Class cls)
public static void addFilter(QlFilter filter)
public static void setOut(java.io.PrintWriter out)
public static void setFileWidth(int fileWidth)
public static void setClassWidth(int classWidth)
public static void setLineWidth(int lineWidth)
public static void setFunctionWidth(int functionWidth)
public static void setClassColor(java.lang.String className, ANSIColor color)
public static void setClassColor(ANSIColor color)
public static void setPackageColor(ANSIColor color)
public static void setPackageColor(java.lang.String pkg, ANSIColor color)
public static void setMethodColor(java.lang.String methodName, ANSIColor color)
public static void setMethodColor(java.lang.String className, java.lang.String methodName, ANSIColor color)
public static void clearClassColor(java.lang.String className)
public static void setFileColor(java.lang.String fileName, ANSIColor color)
public static void setFileColor(ANSIColor color)
public static void set(boolean columns, int fileWidth, int lineWidth, int classWidth, int funcWidth)
public static void setVerbose(boolean verbose)
public static void setQuiet(boolean quiet)
public static void setOutput(int type, org.incava.qualog.QlLevel level)
public static void setQuiet(org.incava.qualog.QlLevel level)
public static boolean verbose()
public static void setColumns(boolean cols)
public static void addClassSkipped(java.lang.Class cls)
public static void addClassSkipped(java.lang.String clsName)
public static void reset()
public static void clear()
public static int findStackStart(java.lang.StackTraceElement[] stack)
public static boolean time(java.lang.String msg)
public static boolean time()
public static boolean start(java.lang.String msg)
public static boolean start()
public static boolean end(java.lang.String msg)
public static boolean end()
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] msgColors, java.lang.String name, java.lang.Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
public static boolean stack(ANSIColor[] msgColors, java.lang.String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor msgColor, java.lang.String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
public static boolean stack(org.incava.qualog.QlLevel lvl, ANSIColor[] msgColor, java.lang.String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
public static boolean log()
public static boolean stack()
public static boolean stack(java.lang.String msg)
public static boolean stack(ANSIColor color, java.lang.String msg)
public static boolean stack(ANSIColor[] colors, java.lang.String msg)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String msg)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String msg)
public static boolean stack(java.lang.Object obj)
public static boolean stack(ANSIColor color, java.lang.Object obj)
public static boolean stack(ANSIColor[] colors, java.lang.Object obj)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object obj)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object obj)
public static boolean stack(java.lang.String name, java.lang.Object obj)
public static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object obj)
public static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object obj)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
public static boolean stack(byte b)
public static boolean stack(ANSIColor color, byte b)
public static boolean stack(ANSIColor[] colors, byte b)
public static boolean stack(org.incava.qualog.QlLevel level, byte b)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte b)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte b)
public static boolean stack(java.lang.String name, byte b)
public static boolean stack(ANSIColor color, java.lang.String name, byte b)
public static boolean stack(ANSIColor[] colors, java.lang.String name, byte b)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte b)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte b)
public static boolean stack(char c)
public static boolean stack(ANSIColor color, char c)
public static boolean stack(ANSIColor[] colors, char c)
public static boolean stack(org.incava.qualog.QlLevel level, char c)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char c)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char c)
public static boolean stack(java.lang.String name, char c)
public static boolean stack(ANSIColor color, java.lang.String name, char c)
public static boolean stack(ANSIColor[] colors, java.lang.String name, char c)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char c)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char c)
public static boolean stack(double d)
public static boolean stack(ANSIColor color, double d)
public static boolean stack(ANSIColor[] colors, double d)
public static boolean stack(org.incava.qualog.QlLevel level, double d)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double d)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double d)
public static boolean stack(java.lang.String name, double d)
public static boolean stack(ANSIColor color, java.lang.String name, double d)
public static boolean stack(ANSIColor[] colors, java.lang.String name, double d)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double d)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double d)
public static boolean stack(float f)
public static boolean stack(ANSIColor color, float f)
public static boolean stack(ANSIColor[] colors, float f)
public static boolean stack(org.incava.qualog.QlLevel level, float f)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float f)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float f)
public static boolean stack(java.lang.String name, float f)
public static boolean stack(ANSIColor color, java.lang.String name, float f)
public static boolean stack(ANSIColor[] colors, java.lang.String name, float f)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float f)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float f)
public static boolean stack(int i)
public static boolean stack(ANSIColor color, int i)
public static boolean stack(ANSIColor[] colors, int i)
public static boolean stack(org.incava.qualog.QlLevel level, int i)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int i)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int i)
public static boolean stack(java.lang.String name, int i)
public static boolean stack(ANSIColor color, java.lang.String name, int i)
public static boolean stack(ANSIColor[] colors, java.lang.String name, int i)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int i)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int i)
public static boolean stack(long l)
public static boolean stack(ANSIColor color, long l)
public static boolean stack(ANSIColor[] colors, long l)
public static boolean stack(org.incava.qualog.QlLevel level, long l)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long l)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long l)
public static boolean stack(java.lang.String name, long l)
public static boolean stack(ANSIColor color, java.lang.String name, long l)
public static boolean stack(ANSIColor[] colors, java.lang.String name, long l)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long l)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long l)
public static boolean stack(java.lang.Object[] ary)
public static boolean stack(ANSIColor color, java.lang.Object[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.Object[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object[] ary)
public static boolean stack(java.lang.String name, java.lang.Object[] ary)
public static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
public static boolean stack(byte[] ary)
public static boolean stack(ANSIColor color, byte[] ary)
public static boolean stack(ANSIColor[] colors, byte[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte[] ary)
public static boolean stack(java.lang.String name, byte[] ary)
public static boolean stack(ANSIColor color, java.lang.String name, byte[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.String name, byte[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte[] ary)
public static boolean stack(char[] ary)
public static boolean stack(ANSIColor color, char[] ary)
public static boolean stack(ANSIColor[] colors, char[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, char[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char[] ary)
public static boolean stack(java.lang.String name, char[] ary)
public static boolean stack(ANSIColor color, java.lang.String name, char[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.String name, char[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char[] ary)
public static boolean stack(double[] ary)
public static boolean stack(ANSIColor color, double[] ary)
public static boolean stack(ANSIColor[] colors, double[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, double[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double[] ary)
public static boolean stack(java.lang.String name, double[] ary)
public static boolean stack(ANSIColor color, java.lang.String name, double[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.String name, double[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double[] ary)
public static boolean stack(float[] ary)
public static boolean stack(ANSIColor color, float[] ary)
public static boolean stack(ANSIColor[] colors, float[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, float[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float[] ary)
public static boolean stack(java.lang.String name, float[] ary)
public static boolean stack(ANSIColor color, java.lang.String name, float[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.String name, float[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float[] ary)
public static boolean stack(int[] ary)
public static boolean stack(ANSIColor color, int[] ary)
public static boolean stack(ANSIColor[] colors, int[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, int[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int[] ary)
public static boolean stack(java.lang.String name, int[] ary)
public static boolean stack(ANSIColor color, java.lang.String name, int[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.String name, int[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int[] ary)
public static boolean stack(long[] ary)
public static boolean stack(ANSIColor color, long[] ary)
public static boolean stack(ANSIColor[] colors, long[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, long[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long[] ary)
public static boolean stack(java.lang.String name, long[] ary)
public static boolean stack(ANSIColor color, java.lang.String name, long[] ary)
public static boolean stack(ANSIColor[] colors, java.lang.String name, long[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long[] ary)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long[] ary)
public static boolean stack(java.lang.Object obj, int depth)
public static boolean stack(ANSIColor color, java.lang.Object obj, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.Object obj, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object obj, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object obj, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object obj, int depth)
public static boolean stack(java.lang.String name, java.lang.Object obj, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object obj, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object obj, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object obj, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object obj, int depth)
public static boolean stack(byte b, int depth)
public static boolean stack(ANSIColor color, byte b, int depth)
public static boolean stack(ANSIColor[] colors, byte b, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, byte b, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte b, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte b, int depth)
public static boolean stack(java.lang.String name, byte b, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, byte b, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, byte b, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte b, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte b, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte b, int depth)
public static boolean stack(char c, int depth)
public static boolean stack(ANSIColor color, char c, int depth)
public static boolean stack(ANSIColor[] colors, char c, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, char c, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char c, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char c, int depth)
public static boolean stack(java.lang.String name, char c, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, char c, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, char c, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char c, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char c, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char c, int depth)
public static boolean stack(double d, int depth)
public static boolean stack(ANSIColor color, double d, int depth)
public static boolean stack(ANSIColor[] colors, double d, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, double d, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double d, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double d, int depth)
public static boolean stack(java.lang.String name, double d, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, double d, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, double d, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double d, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double d, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double d, int depth)
public static boolean stack(float f, int depth)
public static boolean stack(ANSIColor color, float f, int depth)
public static boolean stack(ANSIColor[] colors, float f, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, float f, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float f, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float f, int depth)
public static boolean stack(java.lang.String name, float f, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, float f, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, float f, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float f, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float f, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float f, int depth)
public static boolean stack(int i, int depth)
public static boolean stack(ANSIColor color, int i, int depth)
public static boolean stack(ANSIColor[] colors, int i, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, int i, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int i, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int i, int depth)
public static boolean stack(java.lang.String name, int i, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, int i, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, int i, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int i, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int i, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int i, int depth)
public static boolean stack(long l, int depth)
public static boolean stack(ANSIColor color, long l, int depth)
public static boolean stack(ANSIColor[] colors, long l, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, long l, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long l, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long l, int depth)
public static boolean stack(java.lang.String name, long l, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, long l, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, long l, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long l, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long l, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long l, int depth)
public static boolean stack(java.lang.Object[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.Object[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.Object[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.Object[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object[] ary, int depth)
public static boolean stack(java.lang.String name, java.lang.Object[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, java.lang.Object[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary, int depth)
public static boolean stack(byte[] ary, int depth)
public static boolean stack(ANSIColor color, byte[] ary, int depth)
public static boolean stack(ANSIColor[] colors, byte[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, byte[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, byte[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte[] ary, int depth)
public static boolean stack(java.lang.String name, byte[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, byte[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, byte[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte[] ary, int depth)
public static boolean stack(char[] ary, int depth)
public static boolean stack(ANSIColor color, char[] ary, int depth)
public static boolean stack(ANSIColor[] colors, char[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, char[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, char[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, char[] ary, int depth)
public static boolean stack(java.lang.String name, char[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, char[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, char[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char[] ary, int depth)
public static boolean stack(double[] ary, int depth)
public static boolean stack(ANSIColor color, double[] ary, int depth)
public static boolean stack(ANSIColor[] colors, double[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, double[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, double[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, double[] ary, int depth)
public static boolean stack(java.lang.String name, double[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, double[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, double[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double[] ary, int depth)
public static boolean stack(float[] ary, int depth)
public static boolean stack(ANSIColor color, float[] ary, int depth)
public static boolean stack(ANSIColor[] colors, float[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, float[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, float[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, float[] ary, int depth)
public static boolean stack(java.lang.String name, float[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, float[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, float[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float[] ary, int depth)
public static boolean stack(int[] ary, int depth)
public static boolean stack(ANSIColor color, int[] ary, int depth)
public static boolean stack(ANSIColor[] colors, int[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, int[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, int[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, int[] ary, int depth)
public static boolean stack(java.lang.String name, int[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, int[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, int[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int[] ary, int depth)
public static boolean stack(long[] ary, int depth)
public static boolean stack(ANSIColor color, long[] ary, int depth)
public static boolean stack(ANSIColor[] colors, long[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, long[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, long[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, long[] ary, int depth)
public static boolean stack(java.lang.String name, long[] ary, int depth)
public static boolean stack(ANSIColor color, java.lang.String name, long[] ary, int depth)
public static boolean stack(ANSIColor[] colors, java.lang.String name, long[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long[] ary, int depth)
public static boolean stack(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long[] ary, int depth)
public static boolean none(java.lang.String msg)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean none(java.lang.Object obj)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean none(java.lang.String name, java.lang.Object obj)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean none(byte b)
public static boolean none(org.incava.qualog.QlLevel level, byte b)
public static boolean none(java.lang.String name, byte b)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean none(char c)
public static boolean none(org.incava.qualog.QlLevel level, char c)
public static boolean none(java.lang.String name, char c)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean none(double d)
public static boolean none(org.incava.qualog.QlLevel level, double d)
public static boolean none(java.lang.String name, double d)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean none(float f)
public static boolean none(org.incava.qualog.QlLevel level, float f)
public static boolean none(java.lang.String name, float f)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean none(int i)
public static boolean none(org.incava.qualog.QlLevel level, int i)
public static boolean none(java.lang.String name, int i)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean none(long l)
public static boolean none(org.incava.qualog.QlLevel level, long l)
public static boolean none(java.lang.String name, long l)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean none(java.lang.Object[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean none(java.lang.String name, java.lang.Object[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean none(byte[] ary)
public static boolean none(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean none(java.lang.String name, byte[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean none(char[] ary)
public static boolean none(org.incava.qualog.QlLevel level, char[] ary)
public static boolean none(java.lang.String name, char[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean none(double[] ary)
public static boolean none(org.incava.qualog.QlLevel level, double[] ary)
public static boolean none(java.lang.String name, double[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean none(float[] ary)
public static boolean none(org.incava.qualog.QlLevel level, float[] ary)
public static boolean none(java.lang.String name, float[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean none(int[] ary)
public static boolean none(org.incava.qualog.QlLevel level, int[] ary)
public static boolean none(java.lang.String name, int[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean none(long[] ary)
public static boolean none(org.incava.qualog.QlLevel level, long[] ary)
public static boolean none(java.lang.String name, long[] ary)
public static boolean none(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean bold(java.lang.String msg)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean bold(java.lang.Object obj)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean bold(java.lang.String name, java.lang.Object obj)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean bold(byte b)
public static boolean bold(org.incava.qualog.QlLevel level, byte b)
public static boolean bold(java.lang.String name, byte b)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean bold(char c)
public static boolean bold(org.incava.qualog.QlLevel level, char c)
public static boolean bold(java.lang.String name, char c)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean bold(double d)
public static boolean bold(org.incava.qualog.QlLevel level, double d)
public static boolean bold(java.lang.String name, double d)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean bold(float f)
public static boolean bold(org.incava.qualog.QlLevel level, float f)
public static boolean bold(java.lang.String name, float f)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean bold(int i)
public static boolean bold(org.incava.qualog.QlLevel level, int i)
public static boolean bold(java.lang.String name, int i)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean bold(long l)
public static boolean bold(org.incava.qualog.QlLevel level, long l)
public static boolean bold(java.lang.String name, long l)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean bold(java.lang.Object[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean bold(java.lang.String name, java.lang.Object[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean bold(byte[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean bold(java.lang.String name, byte[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean bold(char[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, char[] ary)
public static boolean bold(java.lang.String name, char[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean bold(double[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, double[] ary)
public static boolean bold(java.lang.String name, double[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean bold(float[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, float[] ary)
public static boolean bold(java.lang.String name, float[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean bold(int[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, int[] ary)
public static boolean bold(java.lang.String name, int[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean bold(long[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, long[] ary)
public static boolean bold(java.lang.String name, long[] ary)
public static boolean bold(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean underscore(java.lang.String msg)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean underscore(java.lang.Object obj)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean underscore(java.lang.String name, java.lang.Object obj)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean underscore(byte b)
public static boolean underscore(org.incava.qualog.QlLevel level, byte b)
public static boolean underscore(java.lang.String name, byte b)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean underscore(char c)
public static boolean underscore(org.incava.qualog.QlLevel level, char c)
public static boolean underscore(java.lang.String name, char c)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean underscore(double d)
public static boolean underscore(org.incava.qualog.QlLevel level, double d)
public static boolean underscore(java.lang.String name, double d)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean underscore(float f)
public static boolean underscore(org.incava.qualog.QlLevel level, float f)
public static boolean underscore(java.lang.String name, float f)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean underscore(int i)
public static boolean underscore(org.incava.qualog.QlLevel level, int i)
public static boolean underscore(java.lang.String name, int i)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean underscore(long l)
public static boolean underscore(org.incava.qualog.QlLevel level, long l)
public static boolean underscore(java.lang.String name, long l)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean underscore(java.lang.Object[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean underscore(java.lang.String name, java.lang.Object[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean underscore(byte[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean underscore(java.lang.String name, byte[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean underscore(char[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, char[] ary)
public static boolean underscore(java.lang.String name, char[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean underscore(double[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, double[] ary)
public static boolean underscore(java.lang.String name, double[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean underscore(float[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, float[] ary)
public static boolean underscore(java.lang.String name, float[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean underscore(int[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, int[] ary)
public static boolean underscore(java.lang.String name, int[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean underscore(long[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, long[] ary)
public static boolean underscore(java.lang.String name, long[] ary)
public static boolean underscore(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean underline(java.lang.String msg)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean underline(java.lang.Object obj)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean underline(java.lang.String name, java.lang.Object obj)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean underline(byte b)
public static boolean underline(org.incava.qualog.QlLevel level, byte b)
public static boolean underline(java.lang.String name, byte b)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean underline(char c)
public static boolean underline(org.incava.qualog.QlLevel level, char c)
public static boolean underline(java.lang.String name, char c)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean underline(double d)
public static boolean underline(org.incava.qualog.QlLevel level, double d)
public static boolean underline(java.lang.String name, double d)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean underline(float f)
public static boolean underline(org.incava.qualog.QlLevel level, float f)
public static boolean underline(java.lang.String name, float f)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean underline(int i)
public static boolean underline(org.incava.qualog.QlLevel level, int i)
public static boolean underline(java.lang.String name, int i)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean underline(long l)
public static boolean underline(org.incava.qualog.QlLevel level, long l)
public static boolean underline(java.lang.String name, long l)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean underline(java.lang.Object[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean underline(java.lang.String name, java.lang.Object[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean underline(byte[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean underline(java.lang.String name, byte[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean underline(char[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, char[] ary)
public static boolean underline(java.lang.String name, char[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean underline(double[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, double[] ary)
public static boolean underline(java.lang.String name, double[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean underline(float[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, float[] ary)
public static boolean underline(java.lang.String name, float[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean underline(int[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, int[] ary)
public static boolean underline(java.lang.String name, int[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean underline(long[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, long[] ary)
public static boolean underline(java.lang.String name, long[] ary)
public static boolean underline(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean blink(java.lang.String msg)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean blink(java.lang.Object obj)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean blink(java.lang.String name, java.lang.Object obj)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean blink(byte b)
public static boolean blink(org.incava.qualog.QlLevel level, byte b)
public static boolean blink(java.lang.String name, byte b)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean blink(char c)
public static boolean blink(org.incava.qualog.QlLevel level, char c)
public static boolean blink(java.lang.String name, char c)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean blink(double d)
public static boolean blink(org.incava.qualog.QlLevel level, double d)
public static boolean blink(java.lang.String name, double d)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean blink(float f)
public static boolean blink(org.incava.qualog.QlLevel level, float f)
public static boolean blink(java.lang.String name, float f)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean blink(int i)
public static boolean blink(org.incava.qualog.QlLevel level, int i)
public static boolean blink(java.lang.String name, int i)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean blink(long l)
public static boolean blink(org.incava.qualog.QlLevel level, long l)
public static boolean blink(java.lang.String name, long l)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean blink(java.lang.Object[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean blink(java.lang.String name, java.lang.Object[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean blink(byte[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean blink(java.lang.String name, byte[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean blink(char[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, char[] ary)
public static boolean blink(java.lang.String name, char[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean blink(double[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, double[] ary)
public static boolean blink(java.lang.String name, double[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean blink(float[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, float[] ary)
public static boolean blink(java.lang.String name, float[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean blink(int[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, int[] ary)
public static boolean blink(java.lang.String name, int[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean blink(long[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, long[] ary)
public static boolean blink(java.lang.String name, long[] ary)
public static boolean blink(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean reverse(java.lang.String msg)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean reverse(java.lang.Object obj)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean reverse(java.lang.String name, java.lang.Object obj)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean reverse(byte b)
public static boolean reverse(org.incava.qualog.QlLevel level, byte b)
public static boolean reverse(java.lang.String name, byte b)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean reverse(char c)
public static boolean reverse(org.incava.qualog.QlLevel level, char c)
public static boolean reverse(java.lang.String name, char c)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean reverse(double d)
public static boolean reverse(org.incava.qualog.QlLevel level, double d)
public static boolean reverse(java.lang.String name, double d)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean reverse(float f)
public static boolean reverse(org.incava.qualog.QlLevel level, float f)
public static boolean reverse(java.lang.String name, float f)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean reverse(int i)
public static boolean reverse(org.incava.qualog.QlLevel level, int i)
public static boolean reverse(java.lang.String name, int i)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean reverse(long l)
public static boolean reverse(org.incava.qualog.QlLevel level, long l)
public static boolean reverse(java.lang.String name, long l)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean reverse(java.lang.Object[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean reverse(java.lang.String name, java.lang.Object[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean reverse(byte[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean reverse(java.lang.String name, byte[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean reverse(char[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, char[] ary)
public static boolean reverse(java.lang.String name, char[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean reverse(double[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, double[] ary)
public static boolean reverse(java.lang.String name, double[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean reverse(float[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, float[] ary)
public static boolean reverse(java.lang.String name, float[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean reverse(int[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, int[] ary)
public static boolean reverse(java.lang.String name, int[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean reverse(long[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, long[] ary)
public static boolean reverse(java.lang.String name, long[] ary)
public static boolean reverse(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean concealed(java.lang.String msg)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean concealed(java.lang.Object obj)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean concealed(java.lang.String name, java.lang.Object obj)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean concealed(byte b)
public static boolean concealed(org.incava.qualog.QlLevel level, byte b)
public static boolean concealed(java.lang.String name, byte b)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean concealed(char c)
public static boolean concealed(org.incava.qualog.QlLevel level, char c)
public static boolean concealed(java.lang.String name, char c)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean concealed(double d)
public static boolean concealed(org.incava.qualog.QlLevel level, double d)
public static boolean concealed(java.lang.String name, double d)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean concealed(float f)
public static boolean concealed(org.incava.qualog.QlLevel level, float f)
public static boolean concealed(java.lang.String name, float f)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean concealed(int i)
public static boolean concealed(org.incava.qualog.QlLevel level, int i)
public static boolean concealed(java.lang.String name, int i)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean concealed(long l)
public static boolean concealed(org.incava.qualog.QlLevel level, long l)
public static boolean concealed(java.lang.String name, long l)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean concealed(java.lang.Object[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean concealed(java.lang.String name, java.lang.Object[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean concealed(byte[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean concealed(java.lang.String name, byte[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean concealed(char[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, char[] ary)
public static boolean concealed(java.lang.String name, char[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean concealed(double[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, double[] ary)
public static boolean concealed(java.lang.String name, double[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean concealed(float[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, float[] ary)
public static boolean concealed(java.lang.String name, float[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean concealed(int[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, int[] ary)
public static boolean concealed(java.lang.String name, int[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean concealed(long[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, long[] ary)
public static boolean concealed(java.lang.String name, long[] ary)
public static boolean concealed(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean black(java.lang.String msg)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean black(java.lang.Object obj)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean black(java.lang.String name, java.lang.Object obj)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean black(byte b)
public static boolean black(org.incava.qualog.QlLevel level, byte b)
public static boolean black(java.lang.String name, byte b)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean black(char c)
public static boolean black(org.incava.qualog.QlLevel level, char c)
public static boolean black(java.lang.String name, char c)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean black(double d)
public static boolean black(org.incava.qualog.QlLevel level, double d)
public static boolean black(java.lang.String name, double d)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean black(float f)
public static boolean black(org.incava.qualog.QlLevel level, float f)
public static boolean black(java.lang.String name, float f)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean black(int i)
public static boolean black(org.incava.qualog.QlLevel level, int i)
public static boolean black(java.lang.String name, int i)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean black(long l)
public static boolean black(org.incava.qualog.QlLevel level, long l)
public static boolean black(java.lang.String name, long l)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean black(java.lang.Object[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean black(java.lang.String name, java.lang.Object[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean black(byte[] ary)
public static boolean black(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean black(java.lang.String name, byte[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean black(char[] ary)
public static boolean black(org.incava.qualog.QlLevel level, char[] ary)
public static boolean black(java.lang.String name, char[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean black(double[] ary)
public static boolean black(org.incava.qualog.QlLevel level, double[] ary)
public static boolean black(java.lang.String name, double[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean black(float[] ary)
public static boolean black(org.incava.qualog.QlLevel level, float[] ary)
public static boolean black(java.lang.String name, float[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean black(int[] ary)
public static boolean black(org.incava.qualog.QlLevel level, int[] ary)
public static boolean black(java.lang.String name, int[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean black(long[] ary)
public static boolean black(org.incava.qualog.QlLevel level, long[] ary)
public static boolean black(java.lang.String name, long[] ary)
public static boolean black(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean red(java.lang.String msg)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean red(java.lang.Object obj)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean red(java.lang.String name, java.lang.Object obj)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean red(byte b)
public static boolean red(org.incava.qualog.QlLevel level, byte b)
public static boolean red(java.lang.String name, byte b)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean red(char c)
public static boolean red(org.incava.qualog.QlLevel level, char c)
public static boolean red(java.lang.String name, char c)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean red(double d)
public static boolean red(org.incava.qualog.QlLevel level, double d)
public static boolean red(java.lang.String name, double d)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean red(float f)
public static boolean red(org.incava.qualog.QlLevel level, float f)
public static boolean red(java.lang.String name, float f)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean red(int i)
public static boolean red(org.incava.qualog.QlLevel level, int i)
public static boolean red(java.lang.String name, int i)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean red(long l)
public static boolean red(org.incava.qualog.QlLevel level, long l)
public static boolean red(java.lang.String name, long l)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean red(java.lang.Object[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean red(java.lang.String name, java.lang.Object[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean red(byte[] ary)
public static boolean red(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean red(java.lang.String name, byte[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean red(char[] ary)
public static boolean red(org.incava.qualog.QlLevel level, char[] ary)
public static boolean red(java.lang.String name, char[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean red(double[] ary)
public static boolean red(org.incava.qualog.QlLevel level, double[] ary)
public static boolean red(java.lang.String name, double[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean red(float[] ary)
public static boolean red(org.incava.qualog.QlLevel level, float[] ary)
public static boolean red(java.lang.String name, float[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean red(int[] ary)
public static boolean red(org.incava.qualog.QlLevel level, int[] ary)
public static boolean red(java.lang.String name, int[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean red(long[] ary)
public static boolean red(org.incava.qualog.QlLevel level, long[] ary)
public static boolean red(java.lang.String name, long[] ary)
public static boolean red(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean green(java.lang.String msg)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean green(java.lang.Object obj)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean green(java.lang.String name, java.lang.Object obj)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean green(byte b)
public static boolean green(org.incava.qualog.QlLevel level, byte b)
public static boolean green(java.lang.String name, byte b)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean green(char c)
public static boolean green(org.incava.qualog.QlLevel level, char c)
public static boolean green(java.lang.String name, char c)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean green(double d)
public static boolean green(org.incava.qualog.QlLevel level, double d)
public static boolean green(java.lang.String name, double d)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean green(float f)
public static boolean green(org.incava.qualog.QlLevel level, float f)
public static boolean green(java.lang.String name, float f)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean green(int i)
public static boolean green(org.incava.qualog.QlLevel level, int i)
public static boolean green(java.lang.String name, int i)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean green(long l)
public static boolean green(org.incava.qualog.QlLevel level, long l)
public static boolean green(java.lang.String name, long l)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean green(java.lang.Object[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean green(java.lang.String name, java.lang.Object[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean green(byte[] ary)
public static boolean green(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean green(java.lang.String name, byte[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean green(char[] ary)
public static boolean green(org.incava.qualog.QlLevel level, char[] ary)
public static boolean green(java.lang.String name, char[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean green(double[] ary)
public static boolean green(org.incava.qualog.QlLevel level, double[] ary)
public static boolean green(java.lang.String name, double[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean green(float[] ary)
public static boolean green(org.incava.qualog.QlLevel level, float[] ary)
public static boolean green(java.lang.String name, float[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean green(int[] ary)
public static boolean green(org.incava.qualog.QlLevel level, int[] ary)
public static boolean green(java.lang.String name, int[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean green(long[] ary)
public static boolean green(org.incava.qualog.QlLevel level, long[] ary)
public static boolean green(java.lang.String name, long[] ary)
public static boolean green(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean yellow(java.lang.String msg)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean yellow(java.lang.Object obj)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean yellow(java.lang.String name, java.lang.Object obj)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean yellow(byte b)
public static boolean yellow(org.incava.qualog.QlLevel level, byte b)
public static boolean yellow(java.lang.String name, byte b)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean yellow(char c)
public static boolean yellow(org.incava.qualog.QlLevel level, char c)
public static boolean yellow(java.lang.String name, char c)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean yellow(double d)
public static boolean yellow(org.incava.qualog.QlLevel level, double d)
public static boolean yellow(java.lang.String name, double d)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean yellow(float f)
public static boolean yellow(org.incava.qualog.QlLevel level, float f)
public static boolean yellow(java.lang.String name, float f)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean yellow(int i)
public static boolean yellow(org.incava.qualog.QlLevel level, int i)
public static boolean yellow(java.lang.String name, int i)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean yellow(long l)
public static boolean yellow(org.incava.qualog.QlLevel level, long l)
public static boolean yellow(java.lang.String name, long l)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean yellow(java.lang.Object[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean yellow(java.lang.String name, java.lang.Object[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean yellow(byte[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean yellow(java.lang.String name, byte[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean yellow(char[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, char[] ary)
public static boolean yellow(java.lang.String name, char[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean yellow(double[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, double[] ary)
public static boolean yellow(java.lang.String name, double[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean yellow(float[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, float[] ary)
public static boolean yellow(java.lang.String name, float[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean yellow(int[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, int[] ary)
public static boolean yellow(java.lang.String name, int[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean yellow(long[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, long[] ary)
public static boolean yellow(java.lang.String name, long[] ary)
public static boolean yellow(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean blue(java.lang.String msg)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean blue(java.lang.Object obj)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean blue(java.lang.String name, java.lang.Object obj)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean blue(byte b)
public static boolean blue(org.incava.qualog.QlLevel level, byte b)
public static boolean blue(java.lang.String name, byte b)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean blue(char c)
public static boolean blue(org.incava.qualog.QlLevel level, char c)
public static boolean blue(java.lang.String name, char c)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean blue(double d)
public static boolean blue(org.incava.qualog.QlLevel level, double d)
public static boolean blue(java.lang.String name, double d)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean blue(float f)
public static boolean blue(org.incava.qualog.QlLevel level, float f)
public static boolean blue(java.lang.String name, float f)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean blue(int i)
public static boolean blue(org.incava.qualog.QlLevel level, int i)
public static boolean blue(java.lang.String name, int i)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean blue(long l)
public static boolean blue(org.incava.qualog.QlLevel level, long l)
public static boolean blue(java.lang.String name, long l)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean blue(java.lang.Object[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean blue(java.lang.String name, java.lang.Object[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean blue(byte[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean blue(java.lang.String name, byte[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean blue(char[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, char[] ary)
public static boolean blue(java.lang.String name, char[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean blue(double[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, double[] ary)
public static boolean blue(java.lang.String name, double[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean blue(float[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, float[] ary)
public static boolean blue(java.lang.String name, float[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean blue(int[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, int[] ary)
public static boolean blue(java.lang.String name, int[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean blue(long[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, long[] ary)
public static boolean blue(java.lang.String name, long[] ary)
public static boolean blue(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean magenta(java.lang.String msg)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean magenta(java.lang.Object obj)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean magenta(java.lang.String name, java.lang.Object obj)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean magenta(byte b)
public static boolean magenta(org.incava.qualog.QlLevel level, byte b)
public static boolean magenta(java.lang.String name, byte b)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean magenta(char c)
public static boolean magenta(org.incava.qualog.QlLevel level, char c)
public static boolean magenta(java.lang.String name, char c)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean magenta(double d)
public static boolean magenta(org.incava.qualog.QlLevel level, double d)
public static boolean magenta(java.lang.String name, double d)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean magenta(float f)
public static boolean magenta(org.incava.qualog.QlLevel level, float f)
public static boolean magenta(java.lang.String name, float f)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean magenta(int i)
public static boolean magenta(org.incava.qualog.QlLevel level, int i)
public static boolean magenta(java.lang.String name, int i)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean magenta(long l)
public static boolean magenta(org.incava.qualog.QlLevel level, long l)
public static boolean magenta(java.lang.String name, long l)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean magenta(java.lang.Object[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean magenta(java.lang.String name, java.lang.Object[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean magenta(byte[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean magenta(java.lang.String name, byte[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean magenta(char[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, char[] ary)
public static boolean magenta(java.lang.String name, char[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean magenta(double[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, double[] ary)
public static boolean magenta(java.lang.String name, double[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean magenta(float[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, float[] ary)
public static boolean magenta(java.lang.String name, float[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean magenta(int[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, int[] ary)
public static boolean magenta(java.lang.String name, int[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean magenta(long[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, long[] ary)
public static boolean magenta(java.lang.String name, long[] ary)
public static boolean magenta(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean cyan(java.lang.String msg)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean cyan(java.lang.Object obj)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean cyan(java.lang.String name, java.lang.Object obj)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean cyan(byte b)
public static boolean cyan(org.incava.qualog.QlLevel level, byte b)
public static boolean cyan(java.lang.String name, byte b)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean cyan(char c)
public static boolean cyan(org.incava.qualog.QlLevel level, char c)
public static boolean cyan(java.lang.String name, char c)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean cyan(double d)
public static boolean cyan(org.incava.qualog.QlLevel level, double d)
public static boolean cyan(java.lang.String name, double d)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean cyan(float f)
public static boolean cyan(org.incava.qualog.QlLevel level, float f)
public static boolean cyan(java.lang.String name, float f)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean cyan(int i)
public static boolean cyan(org.incava.qualog.QlLevel level, int i)
public static boolean cyan(java.lang.String name, int i)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean cyan(long l)
public static boolean cyan(org.incava.qualog.QlLevel level, long l)
public static boolean cyan(java.lang.String name, long l)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean cyan(java.lang.Object[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean cyan(java.lang.String name, java.lang.Object[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean cyan(byte[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean cyan(java.lang.String name, byte[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean cyan(char[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, char[] ary)
public static boolean cyan(java.lang.String name, char[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean cyan(double[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, double[] ary)
public static boolean cyan(java.lang.String name, double[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean cyan(float[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, float[] ary)
public static boolean cyan(java.lang.String name, float[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean cyan(int[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, int[] ary)
public static boolean cyan(java.lang.String name, int[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean cyan(long[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, long[] ary)
public static boolean cyan(java.lang.String name, long[] ary)
public static boolean cyan(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean white(java.lang.String msg)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean white(java.lang.Object obj)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean white(java.lang.String name, java.lang.Object obj)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean white(byte b)
public static boolean white(org.incava.qualog.QlLevel level, byte b)
public static boolean white(java.lang.String name, byte b)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean white(char c)
public static boolean white(org.incava.qualog.QlLevel level, char c)
public static boolean white(java.lang.String name, char c)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean white(double d)
public static boolean white(org.incava.qualog.QlLevel level, double d)
public static boolean white(java.lang.String name, double d)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean white(float f)
public static boolean white(org.incava.qualog.QlLevel level, float f)
public static boolean white(java.lang.String name, float f)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean white(int i)
public static boolean white(org.incava.qualog.QlLevel level, int i)
public static boolean white(java.lang.String name, int i)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean white(long l)
public static boolean white(org.incava.qualog.QlLevel level, long l)
public static boolean white(java.lang.String name, long l)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean white(java.lang.Object[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean white(java.lang.String name, java.lang.Object[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean white(byte[] ary)
public static boolean white(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean white(java.lang.String name, byte[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean white(char[] ary)
public static boolean white(org.incava.qualog.QlLevel level, char[] ary)
public static boolean white(java.lang.String name, char[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean white(double[] ary)
public static boolean white(org.incava.qualog.QlLevel level, double[] ary)
public static boolean white(java.lang.String name, double[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean white(float[] ary)
public static boolean white(org.incava.qualog.QlLevel level, float[] ary)
public static boolean white(java.lang.String name, float[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean white(int[] ary)
public static boolean white(org.incava.qualog.QlLevel level, int[] ary)
public static boolean white(java.lang.String name, int[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean white(long[] ary)
public static boolean white(org.incava.qualog.QlLevel level, long[] ary)
public static boolean white(java.lang.String name, long[] ary)
public static boolean white(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onBlack(java.lang.String msg)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onBlack(java.lang.Object obj)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onBlack(java.lang.String name, java.lang.Object obj)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onBlack(byte b)
public static boolean onBlack(org.incava.qualog.QlLevel level, byte b)
public static boolean onBlack(java.lang.String name, byte b)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onBlack(char c)
public static boolean onBlack(org.incava.qualog.QlLevel level, char c)
public static boolean onBlack(java.lang.String name, char c)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onBlack(double d)
public static boolean onBlack(org.incava.qualog.QlLevel level, double d)
public static boolean onBlack(java.lang.String name, double d)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onBlack(float f)
public static boolean onBlack(org.incava.qualog.QlLevel level, float f)
public static boolean onBlack(java.lang.String name, float f)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onBlack(int i)
public static boolean onBlack(org.incava.qualog.QlLevel level, int i)
public static boolean onBlack(java.lang.String name, int i)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onBlack(long l)
public static boolean onBlack(org.incava.qualog.QlLevel level, long l)
public static boolean onBlack(java.lang.String name, long l)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onBlack(java.lang.Object[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onBlack(java.lang.String name, java.lang.Object[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onBlack(byte[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onBlack(java.lang.String name, byte[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onBlack(char[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onBlack(java.lang.String name, char[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onBlack(double[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onBlack(java.lang.String name, double[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onBlack(float[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onBlack(java.lang.String name, float[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onBlack(int[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onBlack(java.lang.String name, int[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onBlack(long[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onBlack(java.lang.String name, long[] ary)
public static boolean onBlack(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onRed(java.lang.String msg)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onRed(java.lang.Object obj)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onRed(java.lang.String name, java.lang.Object obj)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onRed(byte b)
public static boolean onRed(org.incava.qualog.QlLevel level, byte b)
public static boolean onRed(java.lang.String name, byte b)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onRed(char c)
public static boolean onRed(org.incava.qualog.QlLevel level, char c)
public static boolean onRed(java.lang.String name, char c)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onRed(double d)
public static boolean onRed(org.incava.qualog.QlLevel level, double d)
public static boolean onRed(java.lang.String name, double d)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onRed(float f)
public static boolean onRed(org.incava.qualog.QlLevel level, float f)
public static boolean onRed(java.lang.String name, float f)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onRed(int i)
public static boolean onRed(org.incava.qualog.QlLevel level, int i)
public static boolean onRed(java.lang.String name, int i)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onRed(long l)
public static boolean onRed(org.incava.qualog.QlLevel level, long l)
public static boolean onRed(java.lang.String name, long l)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onRed(java.lang.Object[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onRed(java.lang.String name, java.lang.Object[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onRed(byte[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onRed(java.lang.String name, byte[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onRed(char[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onRed(java.lang.String name, char[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onRed(double[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onRed(java.lang.String name, double[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onRed(float[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onRed(java.lang.String name, float[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onRed(int[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onRed(java.lang.String name, int[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onRed(long[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onRed(java.lang.String name, long[] ary)
public static boolean onRed(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onGreen(java.lang.String msg)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onGreen(java.lang.Object obj)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onGreen(java.lang.String name, java.lang.Object obj)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onGreen(byte b)
public static boolean onGreen(org.incava.qualog.QlLevel level, byte b)
public static boolean onGreen(java.lang.String name, byte b)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onGreen(char c)
public static boolean onGreen(org.incava.qualog.QlLevel level, char c)
public static boolean onGreen(java.lang.String name, char c)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onGreen(double d)
public static boolean onGreen(org.incava.qualog.QlLevel level, double d)
public static boolean onGreen(java.lang.String name, double d)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onGreen(float f)
public static boolean onGreen(org.incava.qualog.QlLevel level, float f)
public static boolean onGreen(java.lang.String name, float f)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onGreen(int i)
public static boolean onGreen(org.incava.qualog.QlLevel level, int i)
public static boolean onGreen(java.lang.String name, int i)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onGreen(long l)
public static boolean onGreen(org.incava.qualog.QlLevel level, long l)
public static boolean onGreen(java.lang.String name, long l)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onGreen(java.lang.Object[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onGreen(java.lang.String name, java.lang.Object[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onGreen(byte[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onGreen(java.lang.String name, byte[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onGreen(char[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onGreen(java.lang.String name, char[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onGreen(double[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onGreen(java.lang.String name, double[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onGreen(float[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onGreen(java.lang.String name, float[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onGreen(int[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onGreen(java.lang.String name, int[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onGreen(long[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onGreen(java.lang.String name, long[] ary)
public static boolean onGreen(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onYellow(java.lang.String msg)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onYellow(java.lang.Object obj)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onYellow(java.lang.String name, java.lang.Object obj)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onYellow(byte b)
public static boolean onYellow(org.incava.qualog.QlLevel level, byte b)
public static boolean onYellow(java.lang.String name, byte b)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onYellow(char c)
public static boolean onYellow(org.incava.qualog.QlLevel level, char c)
public static boolean onYellow(java.lang.String name, char c)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onYellow(double d)
public static boolean onYellow(org.incava.qualog.QlLevel level, double d)
public static boolean onYellow(java.lang.String name, double d)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onYellow(float f)
public static boolean onYellow(org.incava.qualog.QlLevel level, float f)
public static boolean onYellow(java.lang.String name, float f)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onYellow(int i)
public static boolean onYellow(org.incava.qualog.QlLevel level, int i)
public static boolean onYellow(java.lang.String name, int i)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onYellow(long l)
public static boolean onYellow(org.incava.qualog.QlLevel level, long l)
public static boolean onYellow(java.lang.String name, long l)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onYellow(java.lang.Object[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onYellow(java.lang.String name, java.lang.Object[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onYellow(byte[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onYellow(java.lang.String name, byte[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onYellow(char[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onYellow(java.lang.String name, char[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onYellow(double[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onYellow(java.lang.String name, double[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onYellow(float[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onYellow(java.lang.String name, float[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onYellow(int[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onYellow(java.lang.String name, int[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onYellow(long[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onYellow(java.lang.String name, long[] ary)
public static boolean onYellow(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onBlue(java.lang.String msg)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onBlue(java.lang.Object obj)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onBlue(java.lang.String name, java.lang.Object obj)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onBlue(byte b)
public static boolean onBlue(org.incava.qualog.QlLevel level, byte b)
public static boolean onBlue(java.lang.String name, byte b)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onBlue(char c)
public static boolean onBlue(org.incava.qualog.QlLevel level, char c)
public static boolean onBlue(java.lang.String name, char c)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onBlue(double d)
public static boolean onBlue(org.incava.qualog.QlLevel level, double d)
public static boolean onBlue(java.lang.String name, double d)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onBlue(float f)
public static boolean onBlue(org.incava.qualog.QlLevel level, float f)
public static boolean onBlue(java.lang.String name, float f)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onBlue(int i)
public static boolean onBlue(org.incava.qualog.QlLevel level, int i)
public static boolean onBlue(java.lang.String name, int i)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onBlue(long l)
public static boolean onBlue(org.incava.qualog.QlLevel level, long l)
public static boolean onBlue(java.lang.String name, long l)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onBlue(java.lang.Object[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onBlue(java.lang.String name, java.lang.Object[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onBlue(byte[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onBlue(java.lang.String name, byte[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onBlue(char[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onBlue(java.lang.String name, char[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onBlue(double[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onBlue(java.lang.String name, double[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onBlue(float[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onBlue(java.lang.String name, float[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onBlue(int[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onBlue(java.lang.String name, int[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onBlue(long[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onBlue(java.lang.String name, long[] ary)
public static boolean onBlue(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onMagenta(java.lang.String msg)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onMagenta(java.lang.Object obj)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onMagenta(java.lang.String name, java.lang.Object obj)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onMagenta(byte b)
public static boolean onMagenta(org.incava.qualog.QlLevel level, byte b)
public static boolean onMagenta(java.lang.String name, byte b)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onMagenta(char c)
public static boolean onMagenta(org.incava.qualog.QlLevel level, char c)
public static boolean onMagenta(java.lang.String name, char c)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onMagenta(double d)
public static boolean onMagenta(org.incava.qualog.QlLevel level, double d)
public static boolean onMagenta(java.lang.String name, double d)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onMagenta(float f)
public static boolean onMagenta(org.incava.qualog.QlLevel level, float f)
public static boolean onMagenta(java.lang.String name, float f)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onMagenta(int i)
public static boolean onMagenta(org.incava.qualog.QlLevel level, int i)
public static boolean onMagenta(java.lang.String name, int i)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onMagenta(long l)
public static boolean onMagenta(org.incava.qualog.QlLevel level, long l)
public static boolean onMagenta(java.lang.String name, long l)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onMagenta(java.lang.Object[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onMagenta(java.lang.String name, java.lang.Object[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onMagenta(byte[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onMagenta(java.lang.String name, byte[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onMagenta(char[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onMagenta(java.lang.String name, char[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onMagenta(double[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onMagenta(java.lang.String name, double[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onMagenta(float[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onMagenta(java.lang.String name, float[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onMagenta(int[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onMagenta(java.lang.String name, int[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onMagenta(long[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onMagenta(java.lang.String name, long[] ary)
public static boolean onMagenta(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onCyan(java.lang.String msg)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onCyan(java.lang.Object obj)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onCyan(java.lang.String name, java.lang.Object obj)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onCyan(byte b)
public static boolean onCyan(org.incava.qualog.QlLevel level, byte b)
public static boolean onCyan(java.lang.String name, byte b)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onCyan(char c)
public static boolean onCyan(org.incava.qualog.QlLevel level, char c)
public static boolean onCyan(java.lang.String name, char c)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onCyan(double d)
public static boolean onCyan(org.incava.qualog.QlLevel level, double d)
public static boolean onCyan(java.lang.String name, double d)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onCyan(float f)
public static boolean onCyan(org.incava.qualog.QlLevel level, float f)
public static boolean onCyan(java.lang.String name, float f)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onCyan(int i)
public static boolean onCyan(org.incava.qualog.QlLevel level, int i)
public static boolean onCyan(java.lang.String name, int i)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onCyan(long l)
public static boolean onCyan(org.incava.qualog.QlLevel level, long l)
public static boolean onCyan(java.lang.String name, long l)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onCyan(java.lang.Object[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onCyan(java.lang.String name, java.lang.Object[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onCyan(byte[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onCyan(java.lang.String name, byte[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onCyan(char[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onCyan(java.lang.String name, char[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onCyan(double[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onCyan(java.lang.String name, double[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onCyan(float[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onCyan(java.lang.String name, float[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onCyan(int[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onCyan(java.lang.String name, int[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onCyan(long[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onCyan(java.lang.String name, long[] ary)
public static boolean onCyan(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean onWhite(java.lang.String msg)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean onWhite(java.lang.Object obj)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean onWhite(java.lang.String name, java.lang.Object obj)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean onWhite(byte b)
public static boolean onWhite(org.incava.qualog.QlLevel level, byte b)
public static boolean onWhite(java.lang.String name, byte b)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean onWhite(char c)
public static boolean onWhite(org.incava.qualog.QlLevel level, char c)
public static boolean onWhite(java.lang.String name, char c)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean onWhite(double d)
public static boolean onWhite(org.incava.qualog.QlLevel level, double d)
public static boolean onWhite(java.lang.String name, double d)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean onWhite(float f)
public static boolean onWhite(org.incava.qualog.QlLevel level, float f)
public static boolean onWhite(java.lang.String name, float f)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean onWhite(int i)
public static boolean onWhite(org.incava.qualog.QlLevel level, int i)
public static boolean onWhite(java.lang.String name, int i)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean onWhite(long l)
public static boolean onWhite(org.incava.qualog.QlLevel level, long l)
public static boolean onWhite(java.lang.String name, long l)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean onWhite(java.lang.Object[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean onWhite(java.lang.String name, java.lang.Object[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean onWhite(byte[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean onWhite(java.lang.String name, byte[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean onWhite(char[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, char[] ary)
public static boolean onWhite(java.lang.String name, char[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean onWhite(double[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, double[] ary)
public static boolean onWhite(java.lang.String name, double[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean onWhite(float[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, float[] ary)
public static boolean onWhite(java.lang.String name, float[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean onWhite(int[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, int[] ary)
public static boolean onWhite(java.lang.String name, int[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean onWhite(long[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, long[] ary)
public static boolean onWhite(java.lang.String name, long[] ary)
public static boolean onWhite(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean log(java.lang.String msg)
public static boolean log(ANSIColor color, java.lang.String msg)
public static boolean log(ANSIColor[] colors, java.lang.String msg)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String msg)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String msg)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String msg)
public static boolean log(java.lang.Object obj)
public static boolean log(ANSIColor color, java.lang.Object obj)
public static boolean log(ANSIColor[] colors, java.lang.Object obj)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.Object obj)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object obj)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object obj)
public static boolean log(java.lang.String name, java.lang.Object obj)
public static boolean log(ANSIColor color, java.lang.String name, java.lang.Object obj)
public static boolean log(ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object obj)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object obj)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object obj)
public static boolean log(byte b)
public static boolean log(ANSIColor color, byte b)
public static boolean log(ANSIColor[] colors, byte b)
public static boolean log(org.incava.qualog.QlLevel level, byte b)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, byte b)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte b)
public static boolean log(java.lang.String name, byte b)
public static boolean log(ANSIColor color, java.lang.String name, byte b)
public static boolean log(ANSIColor[] colors, java.lang.String name, byte b)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, byte b)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte b)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte b)
public static boolean log(char c)
public static boolean log(ANSIColor color, char c)
public static boolean log(ANSIColor[] colors, char c)
public static boolean log(org.incava.qualog.QlLevel level, char c)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, char c)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, char c)
public static boolean log(java.lang.String name, char c)
public static boolean log(ANSIColor color, java.lang.String name, char c)
public static boolean log(ANSIColor[] colors, java.lang.String name, char c)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, char c)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char c)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char c)
public static boolean log(double d)
public static boolean log(ANSIColor color, double d)
public static boolean log(ANSIColor[] colors, double d)
public static boolean log(org.incava.qualog.QlLevel level, double d)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, double d)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, double d)
public static boolean log(java.lang.String name, double d)
public static boolean log(ANSIColor color, java.lang.String name, double d)
public static boolean log(ANSIColor[] colors, java.lang.String name, double d)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, double d)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double d)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double d)
public static boolean log(float f)
public static boolean log(ANSIColor color, float f)
public static boolean log(ANSIColor[] colors, float f)
public static boolean log(org.incava.qualog.QlLevel level, float f)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, float f)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, float f)
public static boolean log(java.lang.String name, float f)
public static boolean log(ANSIColor color, java.lang.String name, float f)
public static boolean log(ANSIColor[] colors, java.lang.String name, float f)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, float f)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float f)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float f)
public static boolean log(int i)
public static boolean log(ANSIColor color, int i)
public static boolean log(ANSIColor[] colors, int i)
public static boolean log(org.incava.qualog.QlLevel level, int i)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, int i)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, int i)
public static boolean log(java.lang.String name, int i)
public static boolean log(ANSIColor color, java.lang.String name, int i)
public static boolean log(ANSIColor[] colors, java.lang.String name, int i)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, int i)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int i)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int i)
public static boolean log(long l)
public static boolean log(ANSIColor color, long l)
public static boolean log(ANSIColor[] colors, long l)
public static boolean log(org.incava.qualog.QlLevel level, long l)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, long l)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, long l)
public static boolean log(java.lang.String name, long l)
public static boolean log(ANSIColor color, java.lang.String name, long l)
public static boolean log(ANSIColor[] colors, java.lang.String name, long l)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, long l)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long l)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long l)
public static boolean log(java.lang.Object[] ary)
public static boolean log(ANSIColor color, java.lang.Object[] ary)
public static boolean log(ANSIColor[] colors, java.lang.Object[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.Object[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.Object[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.Object[] ary)
public static boolean log(java.lang.String name, java.lang.Object[] ary)
public static boolean log(ANSIColor color, java.lang.String name, java.lang.Object[] ary)
public static boolean log(ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, java.lang.Object[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, java.lang.Object[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, java.lang.Object[] ary)
public static boolean log(byte[] ary)
public static boolean log(ANSIColor color, byte[] ary)
public static boolean log(ANSIColor[] colors, byte[] ary)
public static boolean log(org.incava.qualog.QlLevel level, byte[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, byte[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, byte[] ary)
public static boolean log(java.lang.String name, byte[] ary)
public static boolean log(ANSIColor color, java.lang.String name, byte[] ary)
public static boolean log(ANSIColor[] colors, java.lang.String name, byte[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, byte[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, byte[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, byte[] ary)
public static boolean log(char[] ary)
public static boolean log(ANSIColor color, char[] ary)
public static boolean log(ANSIColor[] colors, char[] ary)
public static boolean log(org.incava.qualog.QlLevel level, char[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, char[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, char[] ary)
public static boolean log(java.lang.String name, char[] ary)
public static boolean log(ANSIColor color, java.lang.String name, char[] ary)
public static boolean log(ANSIColor[] colors, java.lang.String name, char[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, char[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, char[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, char[] ary)
public static boolean log(double[] ary)
public static boolean log(ANSIColor color, double[] ary)
public static boolean log(ANSIColor[] colors, double[] ary)
public static boolean log(org.incava.qualog.QlLevel level, double[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, double[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, double[] ary)
public static boolean log(java.lang.String name, double[] ary)
public static boolean log(ANSIColor color, java.lang.String name, double[] ary)
public static boolean log(ANSIColor[] colors, java.lang.String name, double[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, double[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, double[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, double[] ary)
public static boolean log(float[] ary)
public static boolean log(ANSIColor color, float[] ary)
public static boolean log(ANSIColor[] colors, float[] ary)
public static boolean log(org.incava.qualog.QlLevel level, float[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, float[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, float[] ary)
public static boolean log(java.lang.String name, float[] ary)
public static boolean log(ANSIColor color, java.lang.String name, float[] ary)
public static boolean log(ANSIColor[] colors, java.lang.String name, float[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, float[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, float[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, float[] ary)
public static boolean log(int[] ary)
public static boolean log(ANSIColor color, int[] ary)
public static boolean log(ANSIColor[] colors, int[] ary)
public static boolean log(org.incava.qualog.QlLevel level, int[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, int[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, int[] ary)
public static boolean log(java.lang.String name, int[] ary)
public static boolean log(ANSIColor color, java.lang.String name, int[] ary)
public static boolean log(ANSIColor[] colors, java.lang.String name, int[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, int[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, int[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, int[] ary)
public static boolean log(long[] ary)
public static boolean log(ANSIColor color, long[] ary)
public static boolean log(ANSIColor[] colors, long[] ary)
public static boolean log(org.incava.qualog.QlLevel level, long[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, long[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, long[] ary)
public static boolean log(java.lang.String name, long[] ary)
public static boolean log(ANSIColor color, java.lang.String name, long[] ary)
public static boolean log(ANSIColor[] colors, java.lang.String name, long[] ary)
public static boolean log(org.incava.qualog.QlLevel level, java.lang.String name, long[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor color, java.lang.String name, long[] ary)
public static boolean log(org.incava.qualog.QlLevel level, ANSIColor[] colors, java.lang.String name, long[] ary)
protected static java.lang.StackTraceElement[] getStack(int depth)