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

x7.core.bean.Distinct Maven / Gradle / Ivy

There is a newer version: 2.2.7.RELEASE
Show newest version
package x7.core.bean;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;


public class Distinct implements Serializable {

    private static final long serialVersionUID = 5436698915888081349L;

    private List list = new ArrayList<>();

    public List getList(){
        return list;
    }

    public void setList(List list){
        this.list = list;
    }

    public void add(String resultKey){
        this.list.add(resultKey);
    }

    @Override
    public String toString() {
        return "Distinct{" +
                "list=" + list +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy