com.ivanceras.db.api.LiteralString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orm Show documentation
Show all versions of orm Show documentation
ORM - Core Library for Database
package com.ivanceras.db.api;
public class LiteralString {
private String literal;
public LiteralString(String literal){
this.literal = literal;
}
public String toString(){
return this.literal;
}
}