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()