PyJavaFunction).
| Access | Constructor and Description |
|---|---|
| pack-priv |
| Modifier and Type | Method and Description |
|---|---|
| pack-priv static final void | |
| pack-priv static final void | |
| pack-priv static final void | |
| pack-priv static final void | checkHasSelf(Object[]
positional argument array to be checked args, String[] to be taken into account names)Check that at least one argument |
| pack-priv static final void | checkNoArgs(Object[]
positional argument array to be checked args, String[] to be checked names)Check that no positional or keyword arguments are supplied. |
| pack-priv static final void | checkNoArgs(Object[]
positional argument array to be checked args)Check that no positional arguments are supplied, when no keyword arguments have been. |
| public TypeError | typeError(ArgumentError
previously thrown by this object ae, Object[] all arguments given, positional then keyword args, String[] of keyword arguments or names)nullImplements org. ArgumentError that resulted from a call to
this FastCall object, and the arguments that were
supplied in the call, to a Python TypeError.
|
| MethodDescriptor | back to summary |
|---|---|
| pack-priv MethodDescriptor(PyType descrtype, PyType objclass, String name) | |
| checkArgs | back to summary |
|---|---|
| pack-priv static final void checkArgs(Object[] args, int expArgs, String[] names) throws ArgumentError Check the number of positional arguments and that no keywords are
supplied. This is for use when implementing
| |
| checkArgs | back to summary |
|---|---|
| pack-priv static final void checkArgs(Object[] args, int minArgs, int maxArgs, String[] names) throws ArgumentError Check the number of positional arguments and that no keywords are
supplied. This is for use when implementing
| |
| checkArgs | back to summary |
|---|---|
| pack-priv static final void checkArgs(Object[] args, int minArgs, int maxArgs) throws ArgumentError Check that no positional arguments are supplied, when no keyword
arguments have been. This is for use when implementing optimised
alternatives to
| |
| checkHasSelf | back to summary |
|---|---|
| pack-priv static final void checkHasSelf(Object[] args, String[] names) throws ArgumentError Check that at least one argument
| |
| checkNoArgs | back to summary |
|---|---|
| pack-priv static final void checkNoArgs(Object[] args, String[] names) throws ArgumentError Check that no positional or keyword arguments are supplied. This
is for use when implementing
| |
| checkNoArgs | back to summary |
|---|---|
| pack-priv static final void checkNoArgs(Object[] args) throws ArgumentError Check that no positional arguments are supplied, when no keyword
arguments have been. This is for use when implementing optimised
alternatives to
| |
| typeError | back to summary |
|---|---|
| public TypeError typeError(ArgumentError ae, Object[] args, String[] names) Implements org. Doc from org. Translate an
Any of the optimised
Python
| |