Class NumericLiteral
- java.lang.Object
-
- gw.internal.gosu.parser.ParsedElement
-
- gw.internal.gosu.parser.Expression
-
- gw.internal.gosu.parser.expressions.Literal
-
- gw.internal.gosu.parser.expressions.NumericLiteral
-
- All Implemented Interfaces:
ILiteralExpression,INumericLiteralExpression,IExpression,IHasType,IParsedElement,java.lang.Cloneable
public final class NumericLiteral extends Literal implements INumericLiteralExpression
An expression representing number literals as defined in the Gosu grammar.
-
-
Field Summary
Fields Modifier and Type Field Description private boolean_explicitlyTypedprivate java.lang.String_strValueprotected java.lang.Number_valuestatic LockingLazyVar<NumericLiteral>INFINITYstatic LockingLazyVar<NumericLiteral>NaN-
Fields inherited from class gw.internal.gosu.parser.Expression
_type
-
Fields inherited from class gw.internal.gosu.parser.ParsedElement
_tokens, UNDEF_FILE, UNDEF_FUNCTION, UNDEF_MODULE
-
Fields inherited from interface gw.lang.parser.IExpression
EMPTY_ARRAY
-
-
Constructor Summary
Constructors Constructor Description NumericLiteral(java.lang.String strValue, java.lang.Number value, IType type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()NumericLiteralcopy()java.lang.Objectevaluate()Evaluates this Expression and returns the result.java.lang.StringgetStrValue()java.lang.NumbergetValue()booleanisCompileTimeConstant()booleanisExplicitlyTyped()voidsetExplicitlyTyped(boolean b)voidsetValue(java.lang.Number dvalue)java.lang.StringtoString()Subclasses should return a String representing the parsed expression.-
Methods inherited from class gw.internal.gosu.parser.Expression
evaluate, getContextType, getReturnType, getType, getTypeImpl, isNullSafe, isUnchecked, setType
-
Methods inherited from class gw.internal.gosu.parser.ParsedElement
addExceptionsFrom, addParseException, addParseException, addParseException, addParseExceptions, addParseIssues, addParseWarning, addParseWarning, addParseWarnings, addToken, adjustColumn, adjustLineNum, assignTokens, clearParseExceptions, clearParseTreeInformation, clearParseWarnings, compactParseTree, findAncestorParsedElementByType, findDeclaringStatement, findLineNumberOfDeclaration, findRootParsedElement, getAnnotations, getColumn, getContainedParsedElementsByType, getContainedParsedElementsByTypes, getContainedParsedElementsByTypesWithIgnoreSet, getEnclosingFeatureInfo, getFunctionName, getGosuClass, getGosuProgram, getImmediateParseIssue, getImmediateParseIssues, getLineNum, getLocation, getModule, getParent, getParseExceptions, getParseIssues, getParseWarnings, getQualifyingEnclosingTypeInfo, getTokens, hasImmediateParseIssue, hasImmediateParseWarning, hasImmediateParseWarnings, hasParseException, hasParseExceptions, hasParseIssue, hasParseIssues, hasParseWarning, hasParseWarnings, initEmptyParseTree, initLocation, isSuppressed, isSuppressed, isSynthetic, makeDoubleValue, makeFloatValue, makeInteger, makeLong, removeParseException, removeParseWarning, removeParseWarningRecursively, setGosuProgram, setLineNum, setLocation, setParent, setSynthetic, shouldClearParseInfo, visit
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface gw.lang.parser.IExpression
evaluate, getContextType, isNullSafe, isUnchecked
-
Methods inherited from interface gw.lang.parser.IParsedElement
addExceptionsFrom, addParseException, addParseException, addParseWarning, addParseWarning, clearParseExceptions, clearParseTreeInformation, clearParseWarnings, findAncestorParsedElementByType, findDeclaringStatement, findRootParsedElement, getColumn, getContainedParsedElementsByType, getContainedParsedElementsByTypes, getContainedParsedElementsByTypesWithIgnoreSet, getFunctionName, getGosuClass, getGosuProgram, getImmediateParseIssue, getImmediateParseIssues, getLineNum, getLocation, getModule, getParent, getParseExceptions, getParseIssues, getParseWarnings, getReturnType, getTokens, hasImmediateParseIssue, hasImmediateParseWarnings, hasParseException, hasParseExceptions, hasParseIssue, hasParseIssues, hasParseWarning, hasParseWarnings, isSuppressed, isSynthetic, setLocation, setParent, visit
-
-
-
-
Field Detail
-
NaN
public static final LockingLazyVar<NumericLiteral> NaN
-
INFINITY
public static final LockingLazyVar<NumericLiteral> INFINITY
-
_value
protected java.lang.Number _value
-
_strValue
private java.lang.String _strValue
-
_explicitlyTyped
private boolean _explicitlyTyped
-
-
Constructor Detail
-
NumericLiteral
public NumericLiteral(java.lang.String strValue, java.lang.Number value, IType type)
-
-
Method Detail
-
clone
public java.lang.Object clone()
- Overrides:
clonein classjava.lang.Object
-
copy
public NumericLiteral copy()
-
getValue
public java.lang.Number getValue()
- Specified by:
getValuein interfaceINumericLiteralExpression
-
isCompileTimeConstant
public boolean isCompileTimeConstant()
- Specified by:
isCompileTimeConstantin interfaceIParsedElement- Overrides:
isCompileTimeConstantin classParsedElement
-
evaluate
public java.lang.Object evaluate()
Description copied from interface:IExpressionEvaluates this Expression and returns the result.- Specified by:
evaluatein interfaceIExpression- Overrides:
evaluatein classExpression
-
toString
public java.lang.String toString()
Description copied from class:ExpressionSubclasses should return a String representing the parsed expression.- Specified by:
toStringin classExpression
-
getStrValue
public java.lang.String getStrValue()
-
setValue
public void setValue(java.lang.Number dvalue)
-
setExplicitlyTyped
public void setExplicitlyTyped(boolean b)
-
isExplicitlyTyped
public boolean isExplicitlyTyped()
-
-