| Access | Constructor and Description |
|---|---|
| public | |
| public |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __call__(PyObject
the first argument to the function. self, PyObject[] the last arguments to the function (including keyword arguments). args, String[] the keywords used for all keyword arguments. keywords)Overrides org. A variant of the __call__ method with one extra initial argument. |
| 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. |
| public PyObject | _doget(PyObject container, PyObject wherefound)
Overrides org.
|
| public void | |
| protected void | |
| pack-priv PyObject | |
| private ReflectedArgs | |
| public String | toString()
Overrides org. Returns a string representation of the object. |
| PyReflectedConstructor | back to summary |
|---|---|
| public PyReflectedConstructor(String name) | |
| PyReflectedConstructor | back to summary |
|---|---|
| public PyReflectedConstructor(Constructor<?> c) | |
| __call__ | back to summary |
|---|---|
| public PyObject __call__(PyObject self, PyObject[] args, String[] keywords) Overrides org. Doc from org. A variant of the __call__ method with one extra initial argument. This variant is used to
allow method invocations to be performed efficiently.
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.
| |
| _doget | back to summary |
|---|---|
| public PyObject _doget(PyObject container, PyObject wherefound) Overrides org.
| |
| addConstructor | back to summary |
|---|---|
| public void addConstructor(Constructor<?> m) | |
| constructProxy | back to summary |
|---|---|
| protected void constructProxy(PyObject obj, Constructor<?> ctor, Object[] args, Class<?> proxy) | |
| make | back to summary |
|---|---|
| pack-priv PyObject make(PyObject[] args, String[] keywords) | |
| makeArgs | back to summary |
|---|---|
| private ReflectedArgs makeArgs(Constructor<?> m) | |
| toString | back to summary |
|---|---|
| public String toString() Overrides org. Doc from java. Returns a string representation of the object.
Satisfying this method's contract implies a non- | |