-
Classes Class Description com.github.javaparser.printer.configuration.PrettyPrinterConfiguration This class could be removed in a future version. Use default DefaultPrinterConfiguration.com.github.javaparser.printer.lexicalpreservation.PhantomNodeLogic This class is no longer used phantom node are now an attribute of each nodecom.github.javaparser.printer.PrettyPrinter This class could be removed in a future version. Use default DefaultPrettyPrinter.com.github.javaparser.printer.PrettyPrintVisitor This class is no longer acceptable to use because it is not sufficiently configurable and it is too tied to a specific implementation. This class could be removed in a future version. Use default DefaultPrettyPrinterVisitor.
-
Fields Field Description com.github.javaparser.ast.Node.ABSOLUTE_BEGIN_LINE com.github.javaparser.ast.Node.ABSOLUTE_END_LINE com.github.javaparser.utils.Utils.EOL New code should useLineSeparator.SYSTEM
if referring to the current host system's line separator, elseLineSeparator.CR
orLineSeparator.LF
orLineSeparator.CRLF
if referring to a specific style of line separator.com.github.javaparser.utils.Utils.SYSTEM_EOL Renamed fromUtils.EOL
to make it explicit that we're using the system's line separator. New code should useLineSeparator.SYSTEM
if referring to the current host system's line separator, elseLineSeparator.CR
orLineSeparator.LF
orLineSeparator.CRLF
if referring to a specific style of line separator.
-
Constructors Constructor Description com.github.javaparser.ast.expr.IntegerLiteralExpr(int) This function is deprecated in favor ofIntegerLiteralExpr(String)
. Please refer to theIntegerLiteralExpr.asNumber()
function for valid formats and how to construct literals holding negative values.com.github.javaparser.ast.expr.LongLiteralExpr(long) This function is deprecated in favor ofLongLiteralExpr(String)
. Please refer to theLongLiteralExpr.asNumber()
function for valid formats and how to construct literals holding negative values.com.github.javaparser.ast.type.ClassOrInterfaceType(String) use JavaParser.parseClassOrInterfaceType instead. This constructor does not understand generics.