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

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

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

public class QlConstraintValueBoolean extends QlConstraintValue{
	
	private final Boolean value;
	
	public QlConstraintValueBoolean(Boolean value) {
		this.value = value;
	}
	
	public Boolean getValue() {
		return value;
	}
	
	public String toString() {
		return value.toString();
	}
	
	public Object get() {
		return getValue();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy