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

javarepl.expressions.AssignmentWithType Maven / Gradle / Ivy

There is a newer version: 431
Show newest version
package javarepl.expressions;

public final class AssignmentWithType extends Expression {
    private final java.lang.reflect.Type type;
    private final String key;
    private final String value;

    public AssignmentWithType(String source, java.lang.reflect.Type type, String key, String value) {
        super(source);

        this.type = type;
        this.key = key;
        this.value = value;
    }

    public String key() {
        return key;
    }

    public java.lang.reflect.Type type() {
        return type;
    }

    public String value() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy