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

com.bixuebihui.jdbc.entity.CountObject Maven / Gradle / Ivy

Go to download

a fast small database connection pool and a active record flavor mini framework

There is a newer version: 1.15.3.3
Show newest version
package com.bixuebihui.jdbc.entity;
import java.io.Serializable;

/**
 * 

CountObject class.

* * @author xingwx * @version $Id: $Id */ public class CountObject implements Serializable { /** * */ private static final long serialVersionUID = 7022753581609128376L; private String key; private long count; private V value; /** *

Getter for the field count.

* * @return a long. */ public long getCount() { return count; } /** *

Setter for the field count.

* * @param count a long. */ public void setCount(long count) { this.count = count; } /** *

Getter for the field value.

* * @return a V object. */ public V getValue() { return value; } /** *

Setter for the field value.

* * @param value a V object. */ public void setValue(V value) { this.value = value; } /** *

Getter for the field key.

* * @return a {@link java.lang.String} object. */ public String getKey() { return key; } /** *

Setter for the field key.

* * @param key a {@link java.lang.String} object. */ public void setKey(String key) { this.key = key; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy