com.xiaopy.python.Kwarg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaquopy_java Show documentation
Show all versions of chaquopy_java Show documentation
The Python SDK for Android
package com.xiaopy.python;
import org.jetbrains.annotations.*;
/** A Python keyword argument. These may be passed at the end of the parameter list of
* {@link PyObject#call PyObject.call()}. */
public class Kwarg {
public @NotNull String key;
public Object value;
/** The value will be converted as described at {@link PyObject#fromJava
* PyObject.fromJava()}. */
public Kwarg(@NotNull String key, Object value) {
this.key = key;
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy