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

io.ifar.skidroad.jdbi.CountByState Maven / Gradle / Ivy

There is a newer version: 9
Show newest version
package io.ifar.skidroad.jdbi;

/**
 *
 */
public class CountByState {

    private final String state;
    private final int count;

    public CountByState(String state, int count) {
        this.state = state;
        this.count = count;
    }

    public String getState() {
        return state;
    }

    public int getCount() {
        return count;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy