public class

Debug

extends Object
java.lang.Object
   ↳ sun.security.ssl.Debug

Class Overview

This class has be shamefully lifted from sun.security.util.Debug

Summary

Public Constructors
Debug()
Public Methods
static void Help()
static Debug getInstance(String option, String prefix)
Get a Debug object corresponding to whether or not the given option is set.
static Debug getInstance(String option)
Get a Debug object corresponding to whether or not the given option is set.
static boolean isOn(String option)
True if the property "javax.net.debug" contains the string "option".
void println()
print a blank line to stderr that is prefixed with the prefix.
static void println(String prefix, String message)
print a message to stderr that is prefixed with the prefix.
void println(String message)
print a message to stderr that is prefixed with the prefix created from the call to getInstance.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Debug ()

Public Methods

public static void Help ()

public static Debug getInstance (String option, String prefix)

Get a Debug object corresponding to whether or not the given option is set. Set the prefix to be prefix.

public static Debug getInstance (String option)

Get a Debug object corresponding to whether or not the given option is set. Set the prefix to be the same as option.

public static boolean isOn (String option)

True if the property "javax.net.debug" contains the string "option".

public void println ()

print a blank line to stderr that is prefixed with the prefix.

public static void println (String prefix, String message)

print a message to stderr that is prefixed with the prefix.

public void println (String message)

print a message to stderr that is prefixed with the prefix created from the call to getInstance.