Class CharacterLiteralNode

  • All Implemented Interfaces:
    org.plumelib.util.UniqueId

    public class CharacterLiteralNode
    extends ValueLiteralNode
    A node for a character literal. For example:
       'a'
       '\t'
       'Ω'
     
    • Constructor Detail

      • CharacterLiteralNode

        public CharacterLiteralNode​(com.sun.source.tree.LiteralTree t)
        Create a new CharacterLiteralNode.
        Parameters:
        t - the character literal
    • Method Detail

      • getValue

        public java.lang.Character getValue()
        Description copied from class: ValueLiteralNode
        Returns the value of the literal, null for the null literal.
        Specified by:
        getValue in class ValueLiteralNode
        Returns:
        the value of the literal, null for the null literal
      • accept

        public <R,​P> R accept​(NodeVisitor<R,​P> visitor,
                                    P p)
        Description copied from class: Node
        Accept method of the visitor pattern.
        Specified by:
        accept in class Node
        Type Parameters:
        R - result type of the operation
        P - parameter type
        Parameters:
        visitor - the visitor to be applied to this node
        p - the parameter for this operation