Package codeanalysis.binding
Class BoundLiteralExpression
java.lang.Object
codeanalysis.binding.BoundNode
codeanalysis.binding.BoundExpression
codeanalysis.binding.BoundLiteralExpression
Represents a bound literal expression in the code analysis process.
- Version:
- 1.0
- Author:
- Siyabend Urun
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBoundLiteralExpression(Object value) Constructs a new instance of the BoundLiteralExpression class. -
Method Summary
-
Constructor Details
-
BoundLiteralExpression
Constructs a new instance of the BoundLiteralExpression class.- Parameters:
value- The value of the literal expression.
-
-
Method Details
-
getType
Gets the type of the bound expression. -
getClassType
Gets the class type of the bound expression.- Specified by:
getClassTypein classBoundExpression- Returns:
- The class type of the bound expression.
-
getValue
Gets the value of the literal expression.- Returns:
- The value of the literal expression.
-
setValue
Sets the value of the literal expression.- Parameters:
value- The value to set for the literal expression.
-