Java Doc for Qualog.java in  » Code-Analyzer » doctorj » org » incava » qualog » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Code Analyzer » doctorj » org.incava.qualog 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.incava.qualog.Qualog

Qualog
public class Qualog (Code)

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

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

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

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



Field Summary
final public static  ANSIColorBLACK
     The code for black text.
final public static  ANSIColorBLINK
     The code for the blink attribute.
final public static  ANSIColorBLUE
     The code for blue text.
final public static  ANSIColorBOLD
     The code for bold decoration.
final public static  StringCLASS_WIDTH_PROPERTY_KEY
    
final public static  StringCOLUMNAR_PROPERTY_KEY
    
final public static  ANSIColorCONCEALED
     The code for hidden text.
final public static  ANSIColorCYAN
     The code for cyan text.
final protected static  intDEFAULT_STACK_DEPTH
     The default number of stack trace elements to display in a stack.
final public static  StringFILE_WIDTH_PROPERTY_KEY
    
final public static  ANSIColorGREEN
     The code for green text.
final public static  QlLevelLEVEL0
    
final public static  QlLevelLEVEL1
    
final public static  QlLevelLEVEL2
    
final public static  QlLevelLEVEL3
    
final public static  QlLevelLEVEL4
    
final public static  QlLevelLEVEL5
    
final public static  QlLevelLEVEL6
    
final public static  QlLevelLEVEL7
    
final public static  QlLevelLEVEL8
    
final public static  QlLevelLEVEL9
    
final public static  StringLEVEL_PROPERTY_KEY
    
final public static  StringLINE_WIDTH_PROPERTY_KEY
    
final public static  ANSIColorMAGENTA
     The code for magenta text.
final public static  StringMETHOD_WIDTH_PROPERTY_KEY
    
final public static  ANSIColorNONE
     The code for no color applied.
final public static  ANSIColorNO_COLOR
     An object denoting no color.
final public static  ANSIColor[]NO_COLORS
     An array denoting no colors.
final public static  intNO_OUTPUT
    
final public static  ANSIColorON_BLACK
     The code for black background.
final public static  ANSIColorON_BLUE
     The code for blue background.
final public static  ANSIColorON_CYAN
     The code for cyan background.
final public static  ANSIColorON_GREEN
     The code for green background.
final public static  ANSIColorON_MAGENTA
     The code for magenta background.
final public static  ANSIColorON_RED
     The code for red background.
final public static  ANSIColorON_WHITE
     The code for white background.
final public static  ANSIColorON_YELLOW
     The code for yellow background.
final public static  intQUIET
    
final public static  ANSIColorRED
     The code for red text.
final public static  ANSIColorRESET
     The code for reset of colors and decorations.
final public static  ANSIColorREVERSE
     The code for reversed text.
final public static  StringSHOW_CLASSES_PROPERTY_KEY
    
final public static  StringSHOW_FILES_PROPERTY_KEY
    
final public static  ANSIColorUNDERLINE
     The code for underline (AKA underscore).
final public static  ANSIColorUNDERSCORE
     The code for underscore (AKA underline).
final public static  intVERBOSE
    
final public static  StringVERBOSE_PROPERTY_KEY
    
final public static  StringVERSION
     The version of the Qualog module.
final public static  ANSIColorWHITE
     The code for white text.
final public static  ANSIColorYELLOW
     The code for yellow text.
protected static  QlTimertimer
    
protected static  QlWriterwriter
    


Method Summary
public static  voidaddClassSkipped(Class cls)
    
public static  voidaddClassSkipped(String clsName)
    
public static  voidaddFilter(QlFilter filter)
    
public static  booleanblack(String msg)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String msg)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(Object obj)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, Object obj)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, Object obj)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, Object obj)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(byte b)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, byte b)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, byte b)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, byte b)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(char c)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, char c)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, char c)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, char c)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(double d)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, double d)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, double d)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, double d)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(float f)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, float f)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, float f)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, float f)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(int i)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, int i)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, int i)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, int i)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(long l)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, long l)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, long l)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, long l)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(Object[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, Object[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, Object[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, Object[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(byte[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, byte[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, byte[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, byte[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(char[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, char[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, char[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, char[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(double[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, double[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, double[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, double[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(float[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, float[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, float[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, float[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(int[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, int[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, int[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, int[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(long[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, long[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(String name, long[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblack(QlLevel level, String name, long[] ary)
     Writes logging output, with black foreground on the default background.
public static  booleanblink(String msg)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String msg)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(Object obj)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, Object obj)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, Object obj)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, Object obj)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(byte b)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, byte b)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, byte b)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, byte b)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(char c)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, char c)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, char c)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, char c)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(double d)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, double d)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, double d)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, double d)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(float f)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, float f)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, float f)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, float f)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(int i)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, int i)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, int i)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, int i)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(long l)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, long l)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, long l)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, long l)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(Object[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, Object[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, Object[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, Object[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(byte[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, byte[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, byte[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, byte[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(char[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, char[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, char[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, char[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(double[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, double[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, double[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, double[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(float[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, float[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, float[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, float[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(int[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, int[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, int[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, int[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(long[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, long[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(String name, long[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblink(QlLevel level, String name, long[] ary)
     Writes logging output, with blink foreground on the default background.
public static  booleanblue(String msg)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String msg)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(Object obj)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, Object obj)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, Object obj)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, Object obj)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(byte b)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, byte b)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, byte b)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, byte b)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(char c)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, char c)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, char c)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, char c)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(double d)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, double d)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, double d)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, double d)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(float f)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, float f)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, float f)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, float f)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(int i)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, int i)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, int i)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, int i)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(long l)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, long l)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, long l)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, long l)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(Object[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, Object[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, Object[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, Object[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(byte[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, byte[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, byte[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, byte[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(char[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, char[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, char[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, char[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(double[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, double[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, double[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, double[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(float[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, float[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, float[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, float[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(int[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, int[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, int[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, int[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(long[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, long[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(String name, long[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanblue(QlLevel level, String name, long[] ary)
     Writes logging output, with blue foreground on the default background.
public static  booleanbold(String msg)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String msg)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(Object obj)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, Object obj)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, Object obj)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, Object obj)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(byte b)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, byte b)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, byte b)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, byte b)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(char c)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, char c)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, char c)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, char c)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(double d)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, double d)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, double d)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, double d)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(float f)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, float f)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, float f)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, float f)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(int i)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, int i)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, int i)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, int i)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(long l)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, long l)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, long l)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, long l)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(Object[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, Object[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, Object[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, Object[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(byte[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, byte[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, byte[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, byte[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(char[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, char[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, char[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, char[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(double[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, double[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, double[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, double[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(float[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, float[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, float[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, float[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(int[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, int[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, int[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, int[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(long[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, long[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(String name, long[] ary)
     Writes logging output, with bold foreground on the default background.
public static  booleanbold(QlLevel level, String name, long[] ary)
     Writes logging output, with bold foreground on the default background.
public static  voidclear()
    
public static  voidclearClassColor(String className)
    
public static  booleanconcealed(String msg)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String msg)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(Object obj)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, Object obj)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, Object obj)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, Object obj)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(byte b)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, byte b)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, byte b)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, byte b)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(char c)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, char c)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, char c)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, char c)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(double d)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, double d)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, double d)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, double d)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(float f)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, float f)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, float f)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, float f)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(int i)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, int i)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, int i)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, int i)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(long l)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, long l)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, long l)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, long l)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(Object[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, Object[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, Object[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, Object[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(byte[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, byte[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, byte[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, byte[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(char[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, char[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, char[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, char[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(double[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, double[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, double[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, double[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(float[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, float[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, float[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, float[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(int[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, int[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, int[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, int[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(long[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, long[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(String name, long[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleanconcealed(QlLevel level, String name, long[] ary)
     Writes logging output, with concealed foreground on the default background.
public static  booleancyan(String msg)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String msg)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(Object obj)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, Object obj)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, Object obj)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, Object obj)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(byte b)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, byte b)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, byte b)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, byte b)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(char c)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, char c)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, char c)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, char c)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(double d)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, double d)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, double d)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, double d)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(float f)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, float f)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, float f)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, float f)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(int i)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, int i)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, int i)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, int i)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(long l)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, long l)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, long l)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, long l)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(Object[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, Object[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, Object[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, Object[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(byte[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, byte[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, byte[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, byte[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(char[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, char[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, char[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, char[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(double[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, double[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, double[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, double[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(float[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, float[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, float[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, float[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(int[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, int[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, int[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, int[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(long[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, long[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(String name, long[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleancyan(QlLevel level, String name, long[] ary)
     Writes logging output, with cyan foreground on the default background.
public static  booleanend(String msg)
    
public static  booleanend()
    
public static  intfindStackStart(StackTraceElement[] stack)
    
protected static  StackTraceElement[]getStack(int depth)
    
public static  booleangreen(String msg)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String msg)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(Object obj)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, Object obj)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, Object obj)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, Object obj)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(byte b)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, byte b)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, byte b)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, byte b)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(char c)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, char c)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, char c)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, char c)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(double d)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, double d)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, double d)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, double d)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(float f)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, float f)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, float f)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, float f)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(int i)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, int i)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, int i)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, int i)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(long l)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, long l)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, long l)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, long l)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(Object[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, Object[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, Object[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, Object[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(byte[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, byte[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, byte[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, byte[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(char[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, char[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, char[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, char[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(double[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, double[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, double[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, double[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(float[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, float[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, float[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, float[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(int[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, int[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, int[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, int[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(long[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, long[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(String name, long[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleangreen(QlLevel level, String name, long[] ary)
     Writes logging output, with green foreground on the default background.
public static  booleanisLoggable(QlLevel level)
    
public static  booleanlog()
     Writes an empty log message.
public static  booleanlog(String msg)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String msg)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String msg)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String msg)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String msg)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String msg)
     Writes logging output, with the specified colors.
public static  booleanlog(Object obj)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, Object obj)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, Object obj)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, Object obj)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, Object obj)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, Object obj)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, Object obj)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, Object obj)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, Object obj)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, Object obj)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, Object obj)
     Writes logging output, with the specified colors.
public static  booleanlog(byte b)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, byte b)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, byte b)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, byte b)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, byte b)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, byte b)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, byte b)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, byte b)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, byte b)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, byte b)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, byte b)
     Writes logging output, with the specified colors.
public static  booleanlog(char c)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, char c)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, char c)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, char c)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, char c)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, char c)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, char c)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, char c)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, char c)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, char c)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, char c)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, char c)
     Writes logging output, with the specified colors.
public static  booleanlog(double d)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, double d)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, double d)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, double d)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, double d)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, double d)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, double d)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, double d)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, double d)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, double d)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, double d)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, double d)
     Writes logging output, with the specified colors.
public static  booleanlog(float f)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, float f)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, float f)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, float f)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, float f)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, float f)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, float f)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, float f)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, float f)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, float f)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, float f)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, float f)
     Writes logging output, with the specified colors.
public static  booleanlog(int i)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, int i)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, int i)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, int i)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, int i)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, int i)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, int i)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, int i)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, int i)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, int i)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, int i)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, int i)
     Writes logging output, with the specified colors.
public static  booleanlog(long l)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, long l)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, long l)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, long l)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, long l)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, long l)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, long l)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, long l)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, long l)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, long l)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, long l)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, long l)
     Writes logging output, with the specified colors.
public static  booleanlog(Object[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, Object[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, Object[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, Object[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, Object[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, Object[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, Object[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, Object[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, Object[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, Object[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(byte[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, byte[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, byte[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, byte[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, byte[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, byte[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, byte[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, byte[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, byte[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, byte[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(char[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, char[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, char[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, char[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, char[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, char[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, char[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, char[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, char[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, char[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, char[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(double[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, double[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, double[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, double[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, double[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, double[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, double[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, double[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, double[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, double[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, double[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(float[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, float[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, float[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, float[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, float[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, float[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, float[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, float[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, float[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, float[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, float[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(int[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, int[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, int[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, int[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, int[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, int[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, int[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, int[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, int[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, int[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, int[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(long[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, long[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, long[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, long[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, long[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, long[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(String name, long[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(ANSIColor color, String name, long[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(ANSIColor[] colors, String name, long[] ary)
     Writes logging output, with the specified colors.
public static  booleanlog(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground and background.
public static  booleanlog(QlLevel level, ANSIColor color, String name, long[] ary)
     Writes logging output, with the specified color.
public static  booleanlog(QlLevel level, ANSIColor[] colors, String name, long[] ary)
     Writes logging output, with the specified colors.
public static  booleanmagenta(String msg)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String msg)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(Object obj)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, Object obj)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, Object obj)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, Object obj)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(byte b)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, byte b)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, byte b)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, byte b)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(char c)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, char c)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, char c)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, char c)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(double d)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, double d)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, double d)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, double d)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(float f)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, float f)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, float f)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, float f)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(int i)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, int i)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, int i)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, int i)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(long l)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, long l)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, long l)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, long l)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(Object[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, Object[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, Object[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, Object[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(byte[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, byte[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, byte[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, byte[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(char[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, char[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, char[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, char[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(double[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, double[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, double[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, double[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(float[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, float[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, float[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, float[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(int[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, int[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, int[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, int[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(long[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, long[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(String name, long[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleanmagenta(QlLevel level, String name, long[] ary)
     Writes logging output, with magenta foreground on the default background.
public static  booleannone(String msg)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String msg)
     Writes logging output, with none foreground on the default background.
public static  booleannone(Object obj)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, Object obj)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, Object obj)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, Object obj)
     Writes logging output, with none foreground on the default background.
public static  booleannone(byte b)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, byte b)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, byte b)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, byte b)
     Writes logging output, with none foreground on the default background.
public static  booleannone(char c)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, char c)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, char c)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, char c)
     Writes logging output, with none foreground on the default background.
public static  booleannone(double d)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, double d)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, double d)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, double d)
     Writes logging output, with none foreground on the default background.
public static  booleannone(float f)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, float f)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, float f)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, float f)
     Writes logging output, with none foreground on the default background.
public static  booleannone(int i)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, int i)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, int i)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, int i)
     Writes logging output, with none foreground on the default background.
public static  booleannone(long l)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, long l)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, long l)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, long l)
     Writes logging output, with none foreground on the default background.
public static  booleannone(Object[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, Object[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, Object[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, Object[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(byte[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, byte[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, byte[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, byte[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(char[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, char[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, char[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, char[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(double[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, double[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, double[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, double[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(float[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, float[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, float[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, float[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(int[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, int[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, int[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, int[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(long[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, long[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(String name, long[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleannone(QlLevel level, String name, long[] ary)
     Writes logging output, with none foreground on the default background.
public static  booleanonBlack(String msg)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String msg)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(Object obj)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, Object obj)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(byte b)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, byte b)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, byte b)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(char c)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, char c)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, char c)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(double d)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, double d)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, double d)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(float f)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, float f)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, float f)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(int i)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, int i)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, int i)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(long l)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, long l)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, long l)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(Object[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, Object[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(byte[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, byte[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(char[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, char[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(double[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, double[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(float[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, float[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(int[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, int[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(long[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(String name, long[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlack(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a black background.
public static  booleanonBlue(String msg)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String msg)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(Object obj)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, Object obj)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(byte b)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, byte b)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, byte b)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(char c)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, char c)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, char c)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(double d)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, double d)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, double d)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(float f)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, float f)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, float f)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(int i)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, int i)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, int i)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(long l)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, long l)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, long l)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(Object[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, Object[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(byte[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, byte[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(char[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, char[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(double[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, double[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(float[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, float[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(int[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, int[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(long[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(String name, long[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonBlue(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a blue background.
public static  booleanonCyan(String msg)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String msg)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(Object obj)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, Object obj)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(byte b)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, byte b)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, byte b)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(char c)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, char c)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, char c)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(double d)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, double d)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, double d)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(float f)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, float f)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, float f)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(int i)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, int i)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, int i)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(long l)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, long l)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, long l)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(Object[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, Object[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(byte[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, byte[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(char[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, char[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(double[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, double[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(float[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, float[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(int[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, int[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(long[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(String name, long[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonCyan(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a cyan background.
public static  booleanonGreen(String msg)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String msg)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(Object obj)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, Object obj)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(byte b)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, byte b)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, byte b)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(char c)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, char c)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, char c)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(double d)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, double d)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, double d)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(float f)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, float f)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, float f)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(int i)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, int i)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, int i)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(long l)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, long l)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, long l)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(Object[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, Object[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(byte[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, byte[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(char[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, char[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(double[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, double[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(float[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, float[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(int[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, int[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(long[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(String name, long[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonGreen(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a green background.
public static  booleanonMagenta(String msg)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String msg)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(Object obj)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, Object obj)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(byte b)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, byte b)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, byte b)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(char c)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, char c)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, char c)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(double d)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, double d)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, double d)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(float f)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, float f)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, float f)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(int i)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, int i)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, int i)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(long l)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, long l)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, long l)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(Object[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, Object[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(byte[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, byte[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(char[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, char[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(double[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, double[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(float[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, float[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(int[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, int[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(long[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(String name, long[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonMagenta(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a magenta background.
public static  booleanonRed(String msg)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String msg)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(Object obj)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, Object obj)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(byte b)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, byte b)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, byte b)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(char c)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, char c)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, char c)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(double d)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, double d)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, double d)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(float f)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, float f)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, float f)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(int i)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, int i)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, int i)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(long l)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, long l)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, long l)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(Object[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, Object[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(byte[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, byte[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(char[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, char[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(double[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, double[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(float[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, float[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(int[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, int[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(long[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(String name, long[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonRed(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a red background.
public static  booleanonWhite(String msg)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String msg)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(Object obj)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, Object obj)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(byte b)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, byte b)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, byte b)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(char c)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, char c)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, char c)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(double d)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, double d)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, double d)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(float f)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, float f)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, float f)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(int i)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, int i)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, int i)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(long l)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, long l)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, long l)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(Object[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, Object[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(byte[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, byte[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(char[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, char[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(double[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, double[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(float[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, float[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(int[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, int[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(long[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(String name, long[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonWhite(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a white background.
public static  booleanonYellow(String msg)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String msg)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(Object obj)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, Object obj)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, Object obj)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, Object obj)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(byte b)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, byte b)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, byte b)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, byte b)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(char c)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, char c)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, char c)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, char c)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(double d)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, double d)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, double d)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, double d)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(float f)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, float f)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, float f)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, float f)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(int i)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, int i)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, int i)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, int i)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(long l)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, long l)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, long l)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, long l)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(Object[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, Object[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, Object[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, Object[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(byte[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, byte[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, byte[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, byte[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(char[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, char[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, char[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, char[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(double[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, double[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, double[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, double[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(float[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, float[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, float[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, float[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(int[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, int[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, int[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, int[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(long[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, long[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(String name, long[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanonYellow(QlLevel level, String name, long[] ary)
     Writes logging output, with the default foreground on a yellow background.
public static  booleanred(String msg)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String msg)
     Writes logging output, with red foreground on the default background.
public static  booleanred(Object obj)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, Object obj)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, Object obj)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, Object obj)
     Writes logging output, with red foreground on the default background.
public static  booleanred(byte b)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, byte b)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, byte b)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, byte b)
     Writes logging output, with red foreground on the default background.
public static  booleanred(char c)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, char c)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, char c)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, char c)
     Writes logging output, with red foreground on the default background.
public static  booleanred(double d)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, double d)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, double d)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, double d)
     Writes logging output, with red foreground on the default background.
public static  booleanred(float f)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, float f)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, float f)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, float f)
     Writes logging output, with red foreground on the default background.
public static  booleanred(int i)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, int i)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, int i)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, int i)
     Writes logging output, with red foreground on the default background.
public static  booleanred(long l)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, long l)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, long l)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, long l)
     Writes logging output, with red foreground on the default background.
public static  booleanred(Object[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, Object[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, Object[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, Object[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(byte[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, byte[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, byte[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, byte[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(char[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, char[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, char[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, char[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(double[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, double[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, double[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, double[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(float[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, float[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, float[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, float[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(int[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, int[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, int[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, int[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(long[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, long[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(String name, long[] ary)
     Writes logging output, with red foreground on the default background.
public static  booleanred(QlLevel level, String name, long[] ary)
     Writes logging output, with red foreground on the default background.
public static  voidreset()
    
public static  booleanreverse(String msg)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String msg)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(Object obj)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, Object obj)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, Object obj)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, Object obj)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(byte b)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, byte b)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, byte b)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, byte b)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(char c)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, char c)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, char c)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, char c)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(double d)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, double d)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, double d)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, double d)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(float f)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, float f)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, float f)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, float f)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(int i)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, int i)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, int i)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, int i)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(long l)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, long l)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, long l)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, long l)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(Object[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, Object[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, Object[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, Object[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(byte[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, byte[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, byte[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, byte[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(char[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, char[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, char[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, char[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(double[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, double[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, double[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, double[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(float[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, float[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, float[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, float[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(int[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, int[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, int[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, int[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(long[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, long[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(String name, long[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  booleanreverse(QlLevel level, String name, long[] ary)
     Writes logging output, with reverse foreground on the default background.
public static  voidset(boolean columns, int fileWidth, int lineWidth, int classWidth, int funcWidth)
    
public static  voidsetClassColor(String className, ANSIColor color)
    
public static  voidsetClassColor(ANSIColor color)
    
public static  voidsetClassWidth(int classWidth)
    
public static  voidsetColumns(boolean cols)
    
public static  voidsetDisabled(Class cls)
    
public static  voidsetFileColor(String fileName, ANSIColor color)
    
public static  voidsetFileColor(ANSIColor color)
    
public static  voidsetFileWidth(int fileWidth)
    
public static  voidsetFunctionWidth(int functionWidth)
    
public static  voidsetLineWidth(int lineWidth)
    
public static  voidsetMethodColor(String methodName, ANSIColor color)
    
public static  voidsetMethodColor(String className, String methodName, ANSIColor color)
    
public static  voidsetOut(PrintWriter out)
    
public static  voidsetOutput(int type, QlLevel level)
    
public static  voidsetPackageColor(ANSIColor color)
    
public static  voidsetPackageColor(String pkg, ANSIColor color)
    
public static  voidsetQuiet(boolean quiet)
    
public static  voidsetQuiet(QlLevel level)
    
public static  voidsetVerbose(boolean verbose)
    
public static  booleanstack(QlLevel level, ANSIColor[] msgColors, String name, Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
    
public static  booleanstack(ANSIColor[] msgColors, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
    
public static  booleanstack(QlLevel level, ANSIColor msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
    
public static synchronized  booleanstack(QlLevel lvl, ANSIColor[] msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)
    
public static  booleanstack()
     Writes an empty stack message.
public static  booleanstack(String msg)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String msg)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String msg)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String msg)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String msg)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String msg)
     Writes stack output, with the specified colors.
public static  booleanstack(Object obj)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, Object obj)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, Object obj)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, Object obj)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, Object obj)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, Object obj)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, Object obj)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, Object obj)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, Object obj)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, Object obj)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, Object obj)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, Object obj)
     Writes stack output, with the specified colors.
public static  booleanstack(byte b)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, byte b)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, byte b)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, byte b)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, byte b)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, byte b)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, byte b)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, byte b)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, byte b)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, byte b)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, byte b)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, byte b)
     Writes stack output, with the specified colors.
public static  booleanstack(char c)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, char c)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, char c)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, char c)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, char c)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, char c)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, char c)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, char c)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, char c)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, char c)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, char c)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, char c)
     Writes stack output, with the specified colors.
public static  booleanstack(double d)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, double d)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, double d)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, double d)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, double d)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, double d)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, double d)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, double d)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, double d)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, double d)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, double d)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, double d)
     Writes stack output, with the specified colors.
public static  booleanstack(float f)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, float f)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, float f)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, float f)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, float f)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, float f)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, float f)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, float f)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, float f)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, float f)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, float f)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, float f)
     Writes stack output, with the specified colors.
public static  booleanstack(int i)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, int i)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, int i)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, int i)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, int i)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, int i)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, int i)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, int i)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, int i)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, int i)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, int i)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, int i)
     Writes stack output, with the specified colors.
public static  booleanstack(long l)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, long l)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, long l)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, long l)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, long l)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, long l)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, long l)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, long l)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, long l)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, long l)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, long l)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, long l)
     Writes stack output, with the specified colors.
public static  booleanstack(Object[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, Object[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, Object[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, Object[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, Object[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, Object[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, Object[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, Object[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, Object[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, Object[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, Object[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, Object[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(byte[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, byte[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, byte[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, byte[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, byte[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, byte[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, byte[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, byte[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, byte[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, byte[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, byte[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, byte[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(char[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, char[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, char[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, char[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, char[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, char[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, char[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, char[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, char[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, char[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, char[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, char[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(double[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, double[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, double[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, double[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, double[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, double[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, double[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, double[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, double[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, double[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, double[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, double[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(float[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, float[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, float[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, float[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, float[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, float[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, float[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, float[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, float[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, float[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, float[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, float[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(int[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, int[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, int[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, int[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, int[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, int[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, int[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, int[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, int[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, int[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, int[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, int[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(long[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, long[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, long[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, long[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, long[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, long[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, long[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, long[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, long[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, long[] ary)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, long[] ary)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, long[] ary)
     Writes stack output, with the specified colors.
public static  booleanstack(Object obj, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, Object obj, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, Object obj, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, Object obj, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, Object obj, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, Object obj, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, Object obj, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, Object obj, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, Object obj, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, Object obj, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, Object obj, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, Object obj, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(byte b, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, byte b, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, byte b, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, byte b, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, byte b, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, byte b, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, byte b, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, byte b, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, byte b, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, byte b, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, byte b, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, byte b, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(char c, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, char c, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, char c, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, char c, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, char c, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, char c, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, char c, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, char c, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, char c, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, char c, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, char c, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, char c, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(double d, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, double d, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, double d, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, double d, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, double d, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, double d, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, double d, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, double d, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, double d, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, double d, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, double d, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, double d, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(float f, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, float f, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, float f, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, float f, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, float f, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, float f, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, float f, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, float f, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, float f, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, float f, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, float f, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, float f, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(int i, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, int i, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, int i, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, int i, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, int i, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, int i, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, int i, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, int i, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, int i, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, int i, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, int i, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, int i, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(long l, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, long l, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, long l, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, long l, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, long l, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, long l, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, long l, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, long l, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, long l, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, long l, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, long l, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, long l, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(Object[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, Object[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, Object[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, Object[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, Object[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, Object[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, Object[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, Object[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, Object[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, Object[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, Object[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, Object[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(byte[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, byte[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, byte[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, byte[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, byte[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, byte[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, byte[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, byte[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, byte[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, byte[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, byte[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, byte[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(char[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, char[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, char[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, char[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, char[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, char[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, char[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, char[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, char[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, char[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, char[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, char[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(double[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, double[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, double[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, double[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, double[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, double[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, double[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, double[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, double[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, double[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, double[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, double[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(float[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, float[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, float[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, float[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, float[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, float[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, float[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, float[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, float[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, float[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, float[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, float[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(int[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, int[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, int[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, int[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, int[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, int[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, int[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, int[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, int[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, int[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, int[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, int[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(long[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, long[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, long[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, long[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, long[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, long[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(String name, long[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(ANSIColor color, String name, long[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(ANSIColor[] colors, String name, long[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstack(QlLevel level, String name, long[] ary, int depth)
     Writes stack output, with the default foreground and background.
public static  booleanstack(QlLevel level, ANSIColor color, String name, long[] ary, int depth)
     Writes stack output, with the specified color.
public static  booleanstack(QlLevel level, ANSIColor[] colors, String name, long[] ary, int depth)
     Writes stack output, with the specified colors.
public static  booleanstart(String msg)
    
public static  booleanstart()
    
public static  booleantime(String msg)
    
public static  booleantime()
    
public static  booleanunderline(String msg)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String msg)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(Object obj)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, Object obj)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, Object obj)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, Object obj)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(byte b)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, byte b)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, byte b)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, byte b)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(char c)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, char c)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, char c)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, char c)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(double d)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, double d)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, double d)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, double d)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(float f)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, float f)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, float f)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, float f)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(int i)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, int i)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, int i)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, int i)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(long l)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, long l)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, long l)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, long l)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(Object[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, Object[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, Object[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, Object[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(byte[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, byte[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, byte[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, byte[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(char[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, char[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, char[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, char[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(double[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, double[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, double[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, double[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(float[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, float[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, float[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, float[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(int[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, int[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, int[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, int[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(long[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, long[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(String name, long[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderline(QlLevel level, String name, long[] ary)
     Writes logging output, with underline foreground on the default background.
public static  booleanunderscore(String msg)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String msg)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(Object obj)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, Object obj)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, Object obj)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, Object obj)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(byte b)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, byte b)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, byte b)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, byte b)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(char c)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, char c)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, char c)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, char c)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(double d)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, double d)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, double d)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, double d)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(float f)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, float f)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, float f)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, float f)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(int i)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, int i)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, int i)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, int i)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(long l)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, long l)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, long l)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, long l)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(Object[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, Object[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, Object[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, Object[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(byte[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, byte[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, byte[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, byte[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(char[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, char[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, char[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, char[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(double[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, double[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, double[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, double[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(float[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, float[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, float[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, float[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(int[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, int[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, int[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, int[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(long[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, long[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(String name, long[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanunderscore(QlLevel level, String name, long[] ary)
     Writes logging output, with underscore foreground on the default background.
public static  booleanverbose()
    
public static  booleanwhite(String msg)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String msg)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(Object obj)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, Object obj)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, Object obj)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, Object obj)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(byte b)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, byte b)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, byte b)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, byte b)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(char c)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, char c)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, char c)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, char c)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(double d)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, double d)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, double d)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, double d)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(float f)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, float f)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, float f)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, float f)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(int i)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, int i)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, int i)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, int i)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(long l)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, long l)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, long l)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, long l)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(Object[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, Object[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, Object[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, Object[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(byte[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, byte[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, byte[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, byte[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(char[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, char[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, char[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, char[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(double[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, double[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, double[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, double[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(float[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, float[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, float[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, float[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(int[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, int[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, int[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, int[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(long[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, long[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(String name, long[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanwhite(QlLevel level, String name, long[] ary)
     Writes logging output, with white foreground on the default background.
public static  booleanyellow(String msg)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String msg)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(Object obj)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, Object obj)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, Object obj)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, Object obj)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(byte b)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, byte b)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, byte b)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, byte b)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(char c)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, char c)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, char c)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, char c)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(double d)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, double d)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, double d)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, double d)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(float f)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, float f)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, float f)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, float f)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(int i)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, int i)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, int i)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, int i)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(long l)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, long l)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, long l)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, long l)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(Object[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, Object[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, Object[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, Object[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(byte[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, byte[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, byte[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, byte[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(char[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, char[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, char[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, char[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(double[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, double[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, double[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, double[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(float[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, float[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, float[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, float[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(int[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, int[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, int[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, int[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(long[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, long[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(String name, long[] ary)
     Writes logging output, with yellow foreground on the default background.
public static  booleanyellow(QlLevel level, String name, long[] ary)
     Writes logging output, with yellow foreground on the default background.

Field Detail
BLACK
final public static ANSIColor BLACK(Code)
The code for black text.



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



BLUE
final public static ANSIColor BLUE(Code)
The code for blue text.



BOLD
final public static ANSIColor BOLD(Code)
The code for bold decoration.



CLASS_WIDTH_PROPERTY_KEY
final public static String CLASS_WIDTH_PROPERTY_KEY(Code)



COLUMNAR_PROPERTY_KEY
final public static String COLUMNAR_PROPERTY_KEY(Code)



CONCEALED
final public static ANSIColor CONCEALED(Code)
The code for hidden text.



CYAN
final public static ANSIColor CYAN(Code)
The code for cyan text.



DEFAULT_STACK_DEPTH
final protected static int DEFAULT_STACK_DEPTH(Code)
The default number of stack trace elements to display in a stack.



FILE_WIDTH_PROPERTY_KEY
final public static String FILE_WIDTH_PROPERTY_KEY(Code)



GREEN
final public static ANSIColor GREEN(Code)
The code for green text.



LEVEL0
final public static QlLevel LEVEL0(Code)



LEVEL1
final public static QlLevel LEVEL1(Code)



LEVEL2
final public static QlLevel LEVEL2(Code)



LEVEL3
final public static QlLevel LEVEL3(Code)



LEVEL4
final public static QlLevel LEVEL4(Code)



LEVEL5
final public static QlLevel LEVEL5(Code)



LEVEL6
final public static QlLevel LEVEL6(Code)



LEVEL7
final public static QlLevel LEVEL7(Code)



LEVEL8
final public static QlLevel LEVEL8(Code)



LEVEL9
final public static QlLevel LEVEL9(Code)



LEVEL_PROPERTY_KEY
final public static String LEVEL_PROPERTY_KEY(Code)



LINE_WIDTH_PROPERTY_KEY
final public static String LINE_WIDTH_PROPERTY_KEY(Code)



MAGENTA
final public static ANSIColor MAGENTA(Code)
The code for magenta text.



METHOD_WIDTH_PROPERTY_KEY
final public static String METHOD_WIDTH_PROPERTY_KEY(Code)



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



NO_COLOR
final public static ANSIColor NO_COLOR(Code)
An object denoting no color.



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



NO_OUTPUT
final public static int NO_OUTPUT(Code)



ON_BLACK
final public static ANSIColor ON_BLACK(Code)
The code for black background.



ON_BLUE
final public static ANSIColor ON_BLUE(Code)
The code for blue background.



ON_CYAN
final public static ANSIColor ON_CYAN(Code)
The code for cyan background.



ON_GREEN
final public static ANSIColor ON_GREEN(Code)
The code for green background.



ON_MAGENTA
final public static ANSIColor ON_MAGENTA(Code)
The code for magenta background.



ON_RED
final public static ANSIColor ON_RED(Code)
The code for red background.



ON_WHITE
final public static ANSIColor ON_WHITE(Code)
The code for white background.



ON_YELLOW
final public static ANSIColor ON_YELLOW(Code)
The code for yellow background.



QUIET
final public static int QUIET(Code)



RED
final public static ANSIColor RED(Code)
The code for red text.



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



REVERSE
final public static ANSIColor REVERSE(Code)
The code for reversed text.



SHOW_CLASSES_PROPERTY_KEY
final public static String SHOW_CLASSES_PROPERTY_KEY(Code)



SHOW_FILES_PROPERTY_KEY
final public static String SHOW_FILES_PROPERTY_KEY(Code)



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



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



VERBOSE
final public static int VERBOSE(Code)



VERBOSE_PROPERTY_KEY
final public static String VERBOSE_PROPERTY_KEY(Code)



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



WHITE
final public static ANSIColor WHITE(Code)
The code for white text.



YELLOW
final public static ANSIColor YELLOW(Code)
The code for yellow text.



timer
protected static QlTimer timer(Code)



writer
protected static QlWriter writer(Code)





Method Detail
addClassSkipped
public static void addClassSkipped(Class cls)(Code)



addClassSkipped
public static void addClassSkipped(String clsName)(Code)



addFilter
public static void addFilter(QlFilter filter)(Code)



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



clear
public static void clear()(Code)



clearClassColor
public static void clearClassColor(String className)(Code)



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



end
public static boolean end(String msg)(Code)



end
public static boolean end()(Code)



findStackStart
public static int findStackStart(StackTraceElement[] stack)(Code)



getStack
protected static StackTraceElement[] getStack(int depth)(Code)



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



isLoggable
public static boolean isLoggable(QlLevel level)(Code)



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



onBlue
public static boolean onBlue(byte[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, byte[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(char[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, char[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(String name, char[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(double[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, double[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(String name, double[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(float[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, float[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(String name, float[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(int[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, int[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(String name, int[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(long[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, long[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(String name, long[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onBlue
public static boolean onBlue(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with the default foreground on a blue background.



onCyan
public static boolean onCyan(String msg)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String msg)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(Object obj)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, Object obj)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, Object obj)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, Object obj)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(byte b)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, byte b)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, byte b)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, byte b)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(char c)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, char c)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, char c)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, char c)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(double d)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, double d)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, double d)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, double d)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(float f)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, float f)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, float f)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, float f)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(int i)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, int i)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, int i)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, int i)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(long l)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, long l)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, long l)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, long l)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(Object[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, Object[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(byte[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, byte[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(char[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, char[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, char[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(double[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, double[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, double[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(float[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, float[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, float[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(int[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, int[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, int[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(long[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, long[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(String name, long[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onCyan
public static boolean onCyan(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with the default foreground on a cyan background.



onGreen
public static boolean onGreen(String msg)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String msg)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(Object obj)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, Object obj)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, Object obj)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, Object obj)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(byte b)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, byte b)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, byte b)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, byte b)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(char c)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, char c)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, char c)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, char c)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(double d)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, double d)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, double d)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, double d)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(float f)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, float f)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, float f)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, float f)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(int i)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, int i)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, int i)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, int i)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(long l)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, long l)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, long l)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, long l)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(Object[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, Object[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(byte[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, byte[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(char[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, char[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, char[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(double[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, double[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, double[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(float[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, float[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, float[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(int[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, int[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, int[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(long[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, long[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(String name, long[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onGreen
public static boolean onGreen(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with the default foreground on a green background.



onMagenta
public static boolean onMagenta(String msg)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String msg)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(Object obj)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, Object obj)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, Object obj)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, Object obj)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(byte b)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, byte b)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, byte b)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, byte b)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(char c)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, char c)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, char c)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, char c)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(double d)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, double d)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, double d)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, double d)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(float f)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, float f)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, float f)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, float f)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(int i)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, int i)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, int i)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, int i)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(long l)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, long l)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, long l)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, long l)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(Object[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, Object[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(byte[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, byte[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(char[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, char[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, char[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(double[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, double[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, double[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(float[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, float[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, float[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(int[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, int[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, int[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(long[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, long[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(String name, long[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onMagenta
public static boolean onMagenta(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with the default foreground on a magenta background.



onRed
public static boolean onRed(String msg)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String msg)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(Object obj)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, Object obj)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, Object obj)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, Object obj)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(byte b)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, byte b)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, byte b)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, byte b)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(char c)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, char c)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, char c)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, char c)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(double d)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, double d)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, double d)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, double d)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(float f)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, float f)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, float f)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, float f)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(int i)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, int i)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, int i)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, int i)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(long l)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, long l)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, long l)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, long l)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(Object[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, Object[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(byte[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, byte[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(char[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, char[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, char[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(double[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, double[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, double[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(float[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, float[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, float[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(int[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, int[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, int[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(long[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, long[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(String name, long[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onRed
public static boolean onRed(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with the default foreground on a red background.



onWhite
public static boolean onWhite(String msg)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String msg)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(Object obj)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, Object obj)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, Object obj)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, Object obj)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(byte b)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, byte b)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, byte b)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, byte b)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(char c)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, char c)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, char c)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, char c)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(double d)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, double d)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, double d)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, double d)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(float f)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, float f)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, float f)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, float f)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(int i)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, int i)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, int i)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, int i)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(long l)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, long l)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, long l)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, long l)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(Object[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, Object[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(byte[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, byte[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(char[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, char[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, char[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(double[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, double[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, double[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(float[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, float[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, float[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(int[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, int[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, int[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(long[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, long[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(String name, long[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onWhite
public static boolean onWhite(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with the default foreground on a white background.



onYellow
public static boolean onYellow(String msg)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String msg)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(Object obj)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, Object obj)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, Object obj)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, Object obj)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(byte b)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, byte b)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, byte b)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, byte b)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(char c)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, char c)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, char c)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, char c)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(double d)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, double d)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, double d)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, double d)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(float f)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, float f)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, float f)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, float f)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(int i)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, int i)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, int i)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, int i)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(long l)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, long l)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, long l)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, long l)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(Object[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, Object[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(byte[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, byte[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(char[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, char[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, char[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(double[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, double[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, double[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(float[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, float[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, float[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(int[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, int[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, int[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(long[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, long[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(String name, long[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



onYellow
public static boolean onYellow(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with the default foreground on a yellow background.



red
public static boolean red(String msg)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String msg)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(Object obj)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, Object obj)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, Object obj)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, Object obj)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(byte b)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, byte b)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, byte b)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, byte b)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(char c)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, char c)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, char c)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, char c)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(double d)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, double d)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, double d)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, double d)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(float f)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, float f)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, float f)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, float f)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(int i)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, int i)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, int i)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, int i)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(long l)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, long l)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, long l)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, long l)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(Object[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, Object[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, Object[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(byte[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, byte[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, byte[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(char[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, char[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, char[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(double[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, double[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, double[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(float[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, float[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, float[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(int[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, int[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, int[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(long[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, long[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(String name, long[] ary)(Code)
Writes logging output, with red foreground on the default background.



red
public static boolean red(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with red foreground on the default background.



reset
public static void reset()(Code)



reverse
public static boolean reverse(String msg)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String msg)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(Object obj)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, Object obj)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, Object obj)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, Object obj)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(byte b)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, byte b)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, byte b)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, byte b)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(char c)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, char c)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, char c)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, char c)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(double d)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, double d)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, double d)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, double d)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(float f)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, float f)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, float f)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, float f)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(int i)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, int i)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, int i)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, int i)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(long l)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, long l)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, long l)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, long l)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(Object[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, Object[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, Object[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(byte[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, byte[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, byte[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(char[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, char[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, char[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(double[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, double[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, double[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(float[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, float[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, float[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(int[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, int[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, int[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(long[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, long[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(String name, long[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



reverse
public static boolean reverse(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with reverse foreground on the default background.



set
public static void set(boolean columns, int fileWidth, int lineWidth, int classWidth, int funcWidth)(Code)



setClassColor
public static void setClassColor(String className, ANSIColor color)(Code)



setClassColor
public static void setClassColor(ANSIColor color)(Code)



setClassWidth
public static void setClassWidth(int classWidth)(Code)



setColumns
public static void setColumns(boolean cols)(Code)



setDisabled
public static void setDisabled(Class cls)(Code)



setFileColor
public static void setFileColor(String fileName, ANSIColor color)(Code)



setFileColor
public static void setFileColor(ANSIColor color)(Code)



setFileWidth
public static void setFileWidth(int fileWidth)(Code)



setFunctionWidth
public static void setFunctionWidth(int functionWidth)(Code)



setLineWidth
public static void setLineWidth(int lineWidth)(Code)



setMethodColor
public static void setMethodColor(String methodName, ANSIColor color)(Code)



setMethodColor
public static void setMethodColor(String className, String methodName, ANSIColor color)(Code)



setOut
public static void setOut(PrintWriter out)(Code)



setOutput
public static void setOutput(int type, QlLevel level)(Code)



setPackageColor
public static void setPackageColor(ANSIColor color)(Code)



setPackageColor
public static void setPackageColor(String pkg, ANSIColor color)(Code)



setQuiet
public static void setQuiet(boolean quiet)(Code)



setQuiet
public static void setQuiet(QlLevel level)(Code)



setVerbose
public static void setVerbose(boolean verbose)(Code)



stack
public static boolean stack(QlLevel level, ANSIColor[] msgColors, String name, Object obj, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)(Code)



stack
public static boolean stack(ANSIColor[] msgColors, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)(Code)



stack
public static boolean stack(QlLevel level, ANSIColor msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)(Code)



stack
public static synchronized boolean stack(QlLevel lvl, ANSIColor[] msgColor, String msg, ANSIColor fileColor, ANSIColor classColor, ANSIColor methodColor, int numFrames)(Code)



stack
public static boolean stack()(Code)
Writes an empty stack message.



stack
public static boolean stack(String msg)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String msg)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String msg)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String msg)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String msg)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String msg)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(Object obj)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, Object obj)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, Object obj)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, Object obj)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, Object obj)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, Object obj)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, Object obj)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, Object obj)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, Object obj)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, Object obj)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, Object obj)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, Object obj)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(byte b)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, byte b)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, byte b)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, byte b)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, byte b)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, byte b)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, byte b)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, byte b)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, byte b)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, byte b)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, byte b)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte b)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(char c)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, char c)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, char c)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, char c)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, char c)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, char c)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, char c)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, char c)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, char c)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, char c)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, char c)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char c)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(double d)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, double d)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, double d)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, double d)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, double d)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, double d)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, double d)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, double d)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, double d)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, double d)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, double d)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double d)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(float f)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, float f)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, float f)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, float f)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, float f)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, float f)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, float f)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, float f)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, float f)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, float f)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, float f)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float f)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(int i)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, int i)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, int i)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, int i)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, int i)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, int i)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, int i)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, int i)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, int i)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, int i)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, int i)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int i)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(long l)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, long l)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, long l)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, long l)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, long l)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, long l)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, long l)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, long l)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, long l)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, long l)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, long l)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long l)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(Object[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, Object[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, Object[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, Object[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, Object[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, Object[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, Object[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, Object[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, Object[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, Object[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, Object[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, Object[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(byte[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, byte[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, byte[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, byte[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, byte[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, byte[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, byte[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, byte[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, byte[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, byte[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, byte[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(char[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, char[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, char[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, char[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, char[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, char[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, char[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, char[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, char[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, char[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, char[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(double[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, double[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, double[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, double[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, double[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, double[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, double[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, double[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, double[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, double[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, double[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(float[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, float[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, float[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, float[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, float[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, float[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, float[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, float[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, float[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, float[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, float[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(int[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, int[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, int[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, int[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, int[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, int[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, int[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, int[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, int[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, int[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, int[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(long[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, long[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, long[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, long[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, long[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, long[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, long[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, long[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, long[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, long[] ary)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, long[] ary)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long[] ary)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(Object obj, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, Object obj, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, Object obj, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, Object obj, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, Object obj, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, Object obj, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, Object obj, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, Object obj, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, Object obj, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, Object obj, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, Object obj, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, Object obj, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(byte b, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, byte b, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, byte b, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, byte b, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, byte b, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, byte b, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, byte b, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, byte b, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, byte b, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, byte b, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, byte b, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte b, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(char c, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, char c, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, char c, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, char c, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, char c, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, char c, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, char c, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, char c, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, char c, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, char c, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, char c, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char c, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(double d, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, double d, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, double d, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, double d, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, double d, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, double d, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, double d, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, double d, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, double d, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, double d, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, double d, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double d, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(float f, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, float f, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, float f, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, float f, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, float f, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, float f, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, float f, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, float f, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, float f, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, float f, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, float f, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float f, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(int i, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, int i, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, int i, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, int i, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, int i, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, int i, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, int i, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, int i, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, int i, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, int i, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, int i, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int i, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(long l, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, long l, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, long l, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, long l, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, long l, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, long l, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, long l, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, long l, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, long l, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, long l, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, long l, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long l, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(Object[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, Object[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, Object[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, Object[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, Object[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, Object[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, Object[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, Object[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, Object[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, Object[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, Object[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, Object[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(byte[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, byte[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, byte[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, byte[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, byte[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, byte[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, byte[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, byte[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, byte[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, byte[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, byte[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, byte[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(char[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, char[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, char[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, char[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, char[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, char[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, char[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, char[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, char[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, char[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, char[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, char[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(double[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, double[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, double[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, double[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, double[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, double[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, double[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, double[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, double[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, double[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, double[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, double[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(float[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, float[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, float[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, float[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, float[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, float[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, float[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, float[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, float[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, float[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, float[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, float[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(int[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, int[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, int[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, int[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, int[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, int[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, int[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, int[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, int[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, int[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, int[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, int[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(long[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, long[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, long[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, long[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, long[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, long[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(String name, long[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(ANSIColor color, String name, long[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(ANSIColor[] colors, String name, long[] ary, int depth)(Code)
Writes stack output, with the specified colors.



stack
public static boolean stack(QlLevel level, String name, long[] ary, int depth)(Code)
Writes stack output, with the default foreground and background.



stack
public static boolean stack(QlLevel level, ANSIColor color, String name, long[] ary, int depth)(Code)
Writes stack output, with the specified color.



stack
public static boolean stack(QlLevel level, ANSIColor[] colors, String name, long[] ary, int depth)(Code)
Writes stack output, with the specified colors.



start
public static boolean start(String msg)(Code)



start
public static boolean start()(Code)



time
public static boolean time(String msg)(Code)



time
public static boolean time()(Code)



underline
public static boolean underline(String msg)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String msg)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(Object obj)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, Object obj)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, Object obj)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, Object obj)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(byte b)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, byte b)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, byte b)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, byte b)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(char c)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, char c)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, char c)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, char c)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(double d)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, double d)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, double d)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, double d)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(float f)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, float f)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, float f)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, float f)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(int i)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, int i)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, int i)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, int i)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(long l)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, long l)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, long l)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, long l)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(Object[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, Object[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, Object[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(byte[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, byte[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, byte[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(char[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, char[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, char[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(double[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, double[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, double[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(float[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, float[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, float[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(int[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, int[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, int[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(long[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, long[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(String name, long[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underline
public static boolean underline(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with underline foreground on the default background.



underscore
public static boolean underscore(String msg)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String msg)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(Object obj)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, Object obj)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, Object obj)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, Object obj)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(byte b)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, byte b)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, byte b)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, byte b)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(char c)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, char c)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, char c)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, char c)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(double d)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, double d)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, double d)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, double d)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(float f)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, float f)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, float f)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, float f)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(int i)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, int i)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, int i)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, int i)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(long l)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, long l)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, long l)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, long l)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(Object[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, Object[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, Object[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(byte[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, byte[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, byte[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(char[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, char[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, char[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(double[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, double[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, double[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(float[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, float[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, float[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(int[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, int[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, int[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(long[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, long[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(String name, long[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



underscore
public static boolean underscore(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with underscore foreground on the default background.



verbose
public static boolean verbose()(Code)



white
public static boolean white(String msg)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String msg)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(Object obj)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, Object obj)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, Object obj)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, Object obj)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(byte b)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, byte b)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, byte b)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, byte b)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(char c)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, char c)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, char c)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, char c)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(double d)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, double d)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, double d)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, double d)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(float f)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, float f)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, float f)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, float f)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(int i)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, int i)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, int i)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, int i)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(long l)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, long l)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, long l)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, long l)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(Object[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, Object[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, Object[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(byte[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, byte[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, byte[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(char[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, char[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, char[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(double[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, double[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, double[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(float[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, float[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, float[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(int[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, int[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, int[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(long[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, long[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(String name, long[] ary)(Code)
Writes logging output, with white foreground on the default background.



white
public static boolean white(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with white foreground on the default background.



yellow
public static boolean yellow(String msg)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String msg)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(Object obj)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, Object obj)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, Object obj)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, Object obj)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(byte b)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, byte b)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, byte b)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, byte b)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(char c)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, char c)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, char c)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, char c)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(double d)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, double d)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, double d)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, double d)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(float f)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, float f)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, float f)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, float f)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(int i)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, int i)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, int i)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, int i)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(long l)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, long l)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, long l)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, long l)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(Object[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, Object[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, Object[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, Object[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(byte[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, byte[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, byte[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, byte[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(char[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, char[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, char[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, char[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(double[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, double[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, double[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, double[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(float[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, float[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, float[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, float[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(int[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, int[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, int[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, int[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(long[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, long[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(String name, long[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



yellow
public static boolean yellow(QlLevel level, String name, long[] ary)(Code)
Writes logging output, with yellow foreground on the default background.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.