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

nl.pvanassen.geckoboard.api.json.common.TextStrValueItem Maven / Gradle / Ivy

The newest version!
package nl.pvanassen.geckoboard.api.json.common;

/**
 * A text-string value type for generic use
 *
 * @author Paul van Assen
 */
public class TextStrValueItem {

    private final String text;

    private final String value;

    public TextStrValueItem(String text, String value) {
        super();
        this.text = text;
        this.value = value;
    }

    public String getText() {
        return text;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy