com.capitalone.dashboard.model.NameValueCount Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
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