unot
クラス Match

java.lang.Object
  |
  +--unot.Match

public class Match
extends java.lang.Object

Unot.java Created: 13 May 2005

関連項目:
Discovering Frequent Substructures in Large Unordered Trees (PDF)

フィールドの概要
static boolean DEBUG
          Java 定数 DEBUG の値.
protected  unot.DocSet docset
          このクラスが使用するドキュメントセット.コンストラクタで指定する.
static int EXIT_FAILURE
          非正常終了時の返り値
static int EXIT_SUCCESS
          正常終了時の返り値
static boolean useRootCount
          オプション:パターンに根出現回数を含めるかどうか
static boolean useRootList
          オプション:パターンに根出現リスト情報を含めるかどうか
static java.lang.String VERSION_STRING
          バージョン文字列.
 
コンストラクタの概要
Match(unot.DocSet docset)
          Creates a new Match instance.
 
メソッドの概要
static void main(java.lang.String[] args)
          テスト用
(パッケージプライベート)  unot.OccList match(unot.Pattern pattern, unot.OccList occList)
           
 unot.OccList run(unot.Pattern pattern)
          Executes `UNOT' main algorithm.
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

DEBUG

public static final boolean DEBUG
Java 定数 DEBUG の値.

関連項目:
定数フィールド値

EXIT_SUCCESS

public static final int EXIT_SUCCESS
正常終了時の返り値

関連項目:
定数フィールド値

EXIT_FAILURE

public static final int EXIT_FAILURE
非正常終了時の返り値

関連項目:
定数フィールド値

VERSION_STRING

public static final java.lang.String VERSION_STRING
バージョン文字列.

関連項目:
定数フィールド値

docset

protected unot.DocSet docset
このクラスが使用するドキュメントセット.コンストラクタで指定する.


useRootCount

public static boolean useRootCount
オプション:パターンに根出現回数を含めるかどうか


useRootList

public static boolean useRootList
オプション:パターンに根出現リスト情報を含めるかどうか

コンストラクタの詳細

Match

public Match(unot.DocSet docset)
Creates a new Match instance.

パラメータ:
docset - a DocSet value
メソッドの詳細

run

public unot.OccList run(unot.Pattern pattern)
Executes `UNOT' main algorithm.

パラメータ:
pattern - an Pattern value
戻り値:
a OccList value

match

unot.OccList match(unot.Pattern pattern,
                   unot.OccList occList)

main

public static void main(java.lang.String[] args)
テスト用