com.github.eikecochu.sqlbuilder.InsertValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlbuilder Show documentation
Show all versions of sqlbuilder Show documentation
Java builder to create SQL statements
The newest version!
package com.github.eikecochu.sqlbuilder;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.ToString;
/**
* The InsertValue represents a value that is inserted into the database with
* the INSERT statement.
*/
@ToString
@Getter(AccessLevel.PROTECTED)
public class InsertValue {
private final Insert insert;
private final String column;
private final List