All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaopy.python.Kwarg Maven / Gradle / Ivy

There is a newer version: 12.1.13
Show newest version
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