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

com.capitalone.dashboard.model.NameValueCount Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package com.capitalone.dashboard.model;

public class NameValueCount {
    private NameValue keyValue;
    private int count;

    public NameValueCount(NameValue keyValue, int count) {
        this.keyValue = keyValue;
        this.count = count;
    }

    public NameValue getKeyValue() {
        return keyValue;
    }

    public void setKeyValue(NameValue keyValue) {
        this.keyValue = keyValue;
    }

    public int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy