Package lombok.ast

Examples of lombok.ast.BooleanLiteral


        return;
      case DOUBLE_LITERAL:
        set(node, new FloatingPointLiteral().astDoubleValue(((Number)val).doubleValue()));
        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:
View Full Code Here


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

TOP

Related Classes of lombok.ast.BooleanLiteral

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.