public SQLiteCustomFunction(String name, int numArgs, SQLiteDatabase.CustomFunction callback)Create custom function.
if (name == null) {
throw new IllegalArgumentException("name must not be null.");
}
this.name = name;
this.numArgs = numArgs;
this.callback = callback;
|