Package lombok.ast

Examples of lombok.ast.CharLiteral


        return;
      case BOOLEAN_LITERAL:
        set(node, new BooleanLiteral().astValue((Boolean)val));
        return;
      case CHAR_LITERAL:
        set(node, new CharLiteral().astValue((Character)val));
        return;
      case STRING_LITERAL:
        set(node, new StringLiteral().astValue(val == null ? "" : val.toString()));
        return;
      case NULL_LITERAL:
View Full Code Here


  public Node createStringLiteral(String raw) {
    return posify(new StringLiteral().rawValue(raw));
  }
 
  public Node createCharLiteral(String raw) {
    return posify(new CharLiteral().rawValue(raw));
  }
View Full Code Here

TOP

Related Classes of lombok.ast.CharLiteral

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.