
eu.interedition.text.lisp.NumberAtom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-core Show documentation
Show all versions of text-core Show documentation
Stand-off Markup/Annotation Text Model
The newest version!
package eu.interedition.text.lisp;
/**
* @author Gregor Middell
*/
public class NumberAtom implements Expression {
private final long value;
public NumberAtom(long value) {
this.value = value;
}
public long getValue() {
return value;
}
@Override
public String toString() {
return Long.toString(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy