com.squarespace.template.expr.NullToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-core Show documentation
Show all versions of template-core Show documentation
Squarespace template compiler
package com.squarespace.template.expr;
/**
* Token representing a NULL value.
*/
public class NullToken extends Token {
public NullToken() {
super(ExprTokenType.NULL);
}
@Override
public boolean equals(Object obj) {
return obj instanceof NullToken;
}
@Override
public String toString() {
return "NullToken";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy