Class AtomCaster
java.lang.Object
calculator.atoms.visitor.AtomVisitor
calculator.atoms.visitor.AtomCaster
AtomCaster is an AtomVisitor whose goal is to cast
the visited atom to the specified type
and throws errors if this cast is impossible e.g a complex to an Integer
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAtomCaster(AtomType type) Constructs an AtomCaster to cast to the specified type -
Method Summary
Modifier and TypeMethodDescriptionreturns the result of the cast of the visited to the specified typevoidVisiting a Complex Atom to cast it to the specified type of the visitorvoidvisit(IntegerAtom i) Visiting a Integer Atom to cast it to the specified type of the visitorvoidVisiting a Rationnal Atom to cast it to the specified type of the visitorvoidVisiting a Real Atom to cast it to the specified type of the visitor
-
Constructor Details
-
AtomCaster
Constructs an AtomCaster to cast to the specified type- Parameters:
type- The type to Cast the visited Atom to
-
-
Method Details
-
getResult
returns the result of the cast of the visited to the specified type- Returns:
- the Result of the cast from the visited Atom to the specified type
-
visit
Visiting a Real Atom to cast it to the specified type of the visitor- Specified by:
visitin classAtomVisitor- Parameters:
r- The visited Real to be cast- Throws:
IllegalAtomCast- in case of an impossible cast
-
visit
Visiting a Complex Atom to cast it to the specified type of the visitor- Specified by:
visitin classAtomVisitor- Parameters:
c- The visited Complex to be cast- Throws:
IllegalAtomCast- in case of an impossible cast
-
visit
Visiting a Rationnal Atom to cast it to the specified type of the visitor- Specified by:
visitin classAtomVisitor- Parameters:
q- The visited Rationnal to be cast- Throws:
IllegalAtomCast- in case of an impossible cast
-
visit
Visiting a Integer Atom to cast it to the specified type of the visitor- Specified by:
visitin classAtomVisitor- Parameters:
i- The visited IntegerAtom to be cast- Throws:
IllegalAtomCast- in case of an impossible cast
-