Uses of Class
com.github.javaparser.ast.expr.StringLiteralExpr
-
Packages that use StringLiteralExpr Package Description com.github.javaparser.ast.expr com.github.javaparser.ast.visitor com.github.javaparser.printer -
-
Uses of StringLiteralExpr in com.github.javaparser.ast.expr
Methods in com.github.javaparser.ast.expr that return StringLiteralExpr Modifier and Type Method Description StringLiteralExpr
Expression. asStringLiteralExpr()
StringLiteralExpr
StringLiteralExpr. asStringLiteralExpr()
StringLiteralExpr
StringLiteralExpr. clone()
StringLiteralExpr
StringLiteralExpr. setEscapedValue(String value)
Sets the content of this expressions to given value.StringLiteralExpr
StringLiteralExpr. setString(String value)
Escapes the given string from special characters and uses it as the literal value.Methods in com.github.javaparser.ast.expr that return types with arguments of type StringLiteralExpr Modifier and Type Method Description Optional<StringLiteralExpr>
Expression. toStringLiteralExpr()
Optional<StringLiteralExpr>
StringLiteralExpr. toStringLiteralExpr()
Method parameters in com.github.javaparser.ast.expr with type arguments of type StringLiteralExpr Modifier and Type Method Description void
Expression. ifStringLiteralExpr(Consumer<StringLiteralExpr> action)
void
StringLiteralExpr. ifStringLiteralExpr(Consumer<StringLiteralExpr> action)
-
Uses of StringLiteralExpr in com.github.javaparser.ast.visitor
Methods in com.github.javaparser.ast.visitor with parameters of type StringLiteralExpr Modifier and Type Method Description Visitable
CloneVisitor. visit(StringLiteralExpr n, Object arg)
Boolean
EqualsVisitor. visit(StringLiteralExpr n, Visitable arg)
List<R>
GenericListVisitorAdapter. visit(StringLiteralExpr n, A arg)
R
GenericVisitor. visit(StringLiteralExpr n, A arg)
R
GenericVisitorAdapter. visit(StringLiteralExpr n, A arg)
R
GenericVisitorWithDefaults. visit(StringLiteralExpr n, A arg)
Integer
HashCodeVisitor. visit(StringLiteralExpr n, Void arg)
Visitable
ModifierVisitor. visit(StringLiteralExpr n, A arg)
Boolean
NoCommentEqualsVisitor. visit(StringLiteralExpr n, Visitable arg)
Integer
NoCommentHashCodeVisitor. visit(StringLiteralExpr n, Void arg)
void
NodeFinderVisitor. visit(StringLiteralExpr n, Range arg)
Boolean
ObjectIdentityEqualsVisitor. visit(StringLiteralExpr n, Visitable arg)
Integer
ObjectIdentityHashCodeVisitor. visit(StringLiteralExpr n, Void arg)
void
VoidVisitor. visit(StringLiteralExpr n, A arg)
void
VoidVisitorAdapter. visit(StringLiteralExpr n, A arg)
void
VoidVisitorWithDefaults. visit(StringLiteralExpr n, A arg)
-
Uses of StringLiteralExpr in com.github.javaparser.printer
Methods in com.github.javaparser.printer with parameters of type StringLiteralExpr Modifier and Type Method Description void
DefaultPrettyPrinterVisitor. visit(StringLiteralExpr n, Void arg)
void
PrettyPrintVisitor. visit(StringLiteralExpr n, Void arg)
Deprecated.
-