Top Fields Constructors Methods
com.ziclix.python.sql

pack-priv Class ExtendedCursorFunc

Located in compilation unit of com.ziclix.python.sql.PyExtendedCursor.

extends PyBuiltinMethodSet
Class Inheritance

Field Summary

Inherited from org.python.core.PyBuiltinMethodSet:
__self__

Constructor Summary

AccessConstructor and Description
pack-priv
ExtendedCursorFunc(String name, int index, int argcount, String doc)

pack-priv
ExtendedCursorFunc(String name, int index, int minargs, int maxargs, String doc)

Method Summary

Modifier and TypeMethod and Description
public PyObject
__call__()

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

A variant of the __call__ method with no arguments.

public PyObject
__call__(PyObject
the single argument to the function.
arga
)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

A variant of the __call__ method with one argument.

public PyObject
__call__(PyObject
the first argument to the function.
arga
,
PyObject
the second argument to the function.
argb
,
PyObject
the third argument to the function.
argc
)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

A variant of the __call__ method with three arguments.

public PyObject
__call__(PyObject
the first argument to the function.
arg1
,
PyObject
the second argument to the function.
arg2
,
PyObject
the third argument to the function.
arg3
,
PyObject
the fourth argument to the function.
arg4
)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

A variant of the __call__ method with four arguments.

public PyObject
Inherited from org.python.core.PyBuiltinMethodSet:
__get__bindgetSelfimplementsDescrGetrefersDirectlyTotoStringtraverse

Constructor Detail

ExtendedCursorFuncback to summary
pack-priv ExtendedCursorFunc(String name, int index, int argcount, String doc)
ExtendedCursorFuncback to summary
pack-priv ExtendedCursorFunc(String name, int index, int minargs, int maxargs, String doc)

Method Detail

__call__back to summary
public PyObject __call__()

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

Doc from org.python.core.PyObject.__call__.

A variant of the __call__ method with no arguments. The default behavior is to invoke __call__(args, keywords) with the appropriate arguments. The only reason to override this function would be for improved performance.

Annotations
@Override
__call__back to summary
public PyObject __call__(PyObject arga)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

Doc from org.python.core.PyObject.__call__.

A variant of the __call__ method with one argument. The default behavior is to invoke __call__(args, keywords) with the appropriate arguments. The only reason to override this function would be for improved performance.

Parameters
arga:PyObject

the single argument to the function.

Annotations
@Override
__call__back to summary
public PyObject __call__(PyObject arga, PyObject argb, PyObject argc)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

Doc from org.python.core.PyObject.__call__.

A variant of the __call__ method with three arguments. The default behavior is to invoke __call__(args, keywords) with the appropriate arguments. The only reason to override this function would be for improved performance.

Parameters
arga:PyObject

the first argument to the function.

argb:PyObject

the second argument to the function.

argc:PyObject

the third argument to the function.

Annotations
@Override
__call__back to summary
public PyObject __call__(PyObject arg1, PyObject arg2, PyObject arg3, PyObject arg4)

Overrides org.python.core.PyBuiltinFunctionNarrow.__call__.

Doc from org.python.core.PyObject.__call__.

A variant of the __call__ method with four arguments. The default behavior is to invoke __call__(args, keywords) with the appropriate arguments. The only reason to override this function would be for improved performance.

Parameters
arg1:PyObject

the first argument to the function.

arg2:PyObject

the second argument to the function.

arg3:PyObject

the third argument to the function.

arg4:PyObject

the fourth argument to the function.

Annotations
@Override
fancyCallback to summary
public PyObject fancyCall(PyObject[] args)

Overrides org.python.core.PyBuiltinFunctionNarrow.fancyCall.

Annotations
@Override