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

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

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

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

    private final String prefix;

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

    public String getPrefix() {
        return prefix;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy