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

com.puresoltechnologies.parsers.ust.literals.LogicalLiteral Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package com.puresoltechnologies.parsers.ust.literals;

public class LogicalLiteral extends NumericalLiteral {

	private static final long serialVersionUID = -5622529938750219170L;

	private final boolean value;

	public LogicalLiteral(String originalSymbol, boolean value) {
		super("Logical Literal", originalSymbol);
		this.value = value;
	}

	public boolean getValue() {
		return value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy