com.smallaswater.easysql.mysql.data.SqlDataList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyMySQL Show documentation
Show all versions of EasyMySQL Show documentation
EasyMySQL -- MySQL tool for Nukkit
package com.smallaswater.easysql.mysql.data;
import com.smallaswater.easysql.mysql.utils.ChunkSqlType;
import java.util.LinkedList;
/**
* @author SmallasWater
*/
public class SqlDataList extends LinkedList {
private final String sql;
private final ChunkSqlType[] types;
public SqlDataList(String sql, ChunkSqlType... types) {
this.types = types;
this.sql = sql;
}
/**
* 获取同一字段全部数据
*/
public LinkedList