org.sqlite.udf
クラス AggregateFunction

java.lang.Object
  上位を拡張 org.sqlite.udf.Function
      上位を拡張 org.sqlite.udf.AggregateFunction

public abstract class AggregateFunction
extends Function

User-Defined aggregate function class.

関連項目:
Create Or Redefine SQL Functions

フィールドの概要
 
クラス org.sqlite.udf.Function から継承されたフィールド
argc, name
 
コンストラクタの概要
AggregateFunction(java.lang.String name)
           
AggregateFunction(java.lang.String name, int argc)
           
 
メソッドの概要
abstract  void xFinal(Context ctx)
           
protected  void xFunc(Context ctx)
           
abstract  void xStep(Context ctx)
           
 
クラス org.sqlite.udf.Function から継承されたメソッド
getArgumentCount, getName, isRegistered
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

AggregateFunction

public AggregateFunction(java.lang.String name,
                         int argc)

AggregateFunction

public AggregateFunction(java.lang.String name)
メソッドの詳細

xFunc

protected final void xFunc(Context ctx)
                    throws java.sql.SQLException
定義:
クラス Function 内の xFunc
例外:
java.sql.SQLException

xStep

public abstract void xStep(Context ctx)
                    throws java.sql.SQLException
例外:
java.sql.SQLException

xFinal

public abstract void xFinal(Context ctx)
                     throws java.sql.SQLException
例外:
java.sql.SQLException