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

com.lithium.ldn.starql.models.QlConstraintValueString Maven / Gradle / Ivy

There is a newer version: 2.13
Show newest version
package com.lithium.ldn.starql.models;

/**
 * A String value of a boolean constraint in the WHERE clause of a StarQL SELECT Statement.
 * 
 * @author Jake Scheps
 * @author David Esposito
 */
public final class QlConstraintValueString extends QlConstraintValue {
	
	private final String value;
	
	public QlConstraintValueString(String value) {
		this.value = value;
	}
	
	/**
	 * 
	 * @return The string value of the boolean constraint. Surrounding quotes are removed and 
	 * all internal quotes are un-escaped.
	 */
	public String getValue() {
		return value;
	}
	
	@Override
	public String toString() {
		return value != null ? "'" + value.toString().replaceAll("'", "''") + "'" : "null";
	}

	@Override
	public Object get() {
		return getValue();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy