shohaku.core.util.debug
クラス Debug

java.lang.Object
  拡張shohaku.core.util.debug.Debug

public class Debug
extends java.lang.Object

標準出力ストリームへ出力するDebugPrintStreamを使用したSystem.outの拡張機能を提供します。

簡易的なデバック文出力への利用を想定しておりSystem.out.print()と同感覚で、より書式化された詳細な出力を得ることが出来ます。

関連項目:
DebugPrintStream

フィールドの概要
static DebugPrintStream err
          System.errに出力するDebugPrintStreamを提供します。
static DebugPrintStream out
          System.outに出力するDebugPrintStreamを提供します。
 
コンストラクタの概要
Debug()
           
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

out

public static final DebugPrintStream out
System.outに出力するDebugPrintStreamを提供します。


err

public static final DebugPrintStream err
System.errに出力するDebugPrintStreamを提供します。

コンストラクタの詳細

Debug

public Debug()