Located in compilation unit of com.
| Access | Constructor and Description |
|---|---|
| pack-priv | |
| pack-priv |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __call__()
Overrides org. A variant of the __call__ method with no arguments. |
| public PyObject | __call__(PyObject
the single argument to the function. arg)Overrides org. 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)Overrides org. A variant of the __call__ method with two arguments. |
| 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. A variant of the __call__ method with three arguments. |
| public PyObject | __call__(PyObject[]
all arguments to the function (including keyword arguments). args, String[] the keywords used for all keyword arguments. keywords)Overrides org. The basic method to override when implementing a callable object. |
| CursorFunc | back to summary |
|---|---|
| pack-priv CursorFunc(String name, int index, int argcount, String doc) | |
| CursorFunc | back to summary |
|---|---|
| pack-priv CursorFunc(String name, int index, int minargs, int maxargs, String doc) | |
| __call__ | back to summary |
|---|---|
| public PyObject __call__() Overrides org. Doc from org. A variant of the __call__ method with no arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arg) Overrides org. Doc from org. A variant of the __call__ method with one argument. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arga, PyObject argb) Overrides org. Doc from org. A variant of the __call__ method with two arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject arga, PyObject argb, PyObject argc) Overrides org. Doc from org. A variant of the __call__ method with three arguments. The default behavior is to invoke
| |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject[] args, String[] keywords) Overrides org. Doc from org. The basic method to override when implementing a callable object. The first len(args)-len(keywords) members of args[] are plain arguments. The last len(keywords) arguments are the values of the keyword arguments.
| |