public final class ObjectCreationExpr extends Expression implements NodeWithTypeArguments<ObjectCreationExpr>, NodeWithType<ObjectCreationExpr,ClassOrInterfaceType>, NodeWithArguments<ObjectCreationExpr>, NodeWithOptionalScope<ObjectCreationExpr>
new HashMap.Entry<String, Long>(15) {public String getKey() {return null;}};
HashMap.Entry is the type, String and Long are type arguments, 15 is an argument, and everything in { }
is the anonymous class body.
In class B { class C { public void a() { new B().new C(); } } } the scope is new B()
of ObjectCreationExpr new B().new C()Node.BreadthFirstIterator, Node.DirectChildrenIterator, Node.ObserverRegistrationMode, Node.ParentsVisitor, Node.Parsedness, Node.PostOrderIterator, Node.PreOrderIterator, Node.TreeTraversalABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration, SYMBOL_RESOLVER_KEY| Constructor and Description |
|---|
ObjectCreationExpr() |
ObjectCreationExpr(Expression scope,
ClassOrInterfaceType type,
NodeList<Expression> arguments)
Defines a call to a constructor.
|
ObjectCreationExpr(Expression scope,
ClassOrInterfaceType type,
NodeList<Type> typeArguments,
NodeList<Expression> arguments,
NodeList<BodyDeclaration<?>> anonymousClassBody) |
ObjectCreationExpr(TokenRange tokenRange,
Expression scope,
ClassOrInterfaceType type,
NodeList<Type> typeArguments,
NodeList<Expression> arguments,
NodeList<BodyDeclaration<?>> anonymousClassBody)
This constructor is used by the parser and is considered private.
|
asAnnotationExpr, asArrayAccessExpr, asArrayCreationExpr, asArrayInitializerExpr, asAssignExpr, asBinaryExpr, asBooleanLiteralExpr, asCastExpr, asCharLiteralExpr, asClassExpr, asConditionalExpr, asDoubleLiteralExpr, asEnclosedExpr, asFieldAccessExpr, asInstanceOfExpr, asIntegerLiteralExpr, asLambdaExpr, asLiteralExpr, asLiteralStringValueExpr, asLongLiteralExpr, asMarkerAnnotationExpr, asMethodCallExpr, asMethodReferenceExpr, asNameExpr, asNormalAnnotationExpr, asNullLiteralExpr, asSingleMemberAnnotationExpr, asStringLiteralExpr, asSuperExpr, asThisExpr, asTypeExpr, asUnaryExpr, asVariableDeclarationExpr, calculateResolvedType, ifAnnotationExpr, ifArrayAccessExpr, ifArrayCreationExpr, ifArrayInitializerExpr, ifAssignExpr, ifBinaryExpr, ifBooleanLiteralExpr, ifCastExpr, ifCharLiteralExpr, ifClassExpr, ifConditionalExpr, ifDoubleLiteralExpr, ifEnclosedExpr, ifFieldAccessExpr, ifInstanceOfExpr, ifIntegerLiteralExpr, ifLambdaExpr, ifLiteralExpr, ifLiteralStringValueExpr, ifLongLiteralExpr, ifMarkerAnnotationExpr, ifMethodCallExpr, ifMethodReferenceExpr, ifNameExpr, ifNormalAnnotationExpr, ifNullLiteralExpr, ifSingleMemberAnnotationExpr, ifStringLiteralExpr, ifSuperExpr, ifThisExpr, ifTypeExpr, ifUnaryExpr, ifVariableDeclarationExpr, isAnnotationExpr, isArrayAccessExpr, isArrayCreationExpr, isArrayInitializerExpr, isAssignExpr, isBinaryExpr, isBooleanLiteralExpr, isCastExpr, isCharLiteralExpr, isClassExpr, isConditionalExpr, isDoubleLiteralExpr, isEnclosedExpr, isFieldAccessExpr, isInstanceOfExpr, isIntegerLiteralExpr, isLambdaExpr, isLiteralExpr, isLiteralStringValueExpr, isLongLiteralExpr, isMarkerAnnotationExpr, isMethodCallExpr, isMethodReferenceExpr, isNameExpr, isNormalAnnotationExpr, isNullLiteralExpr, isSingleMemberAnnotationExpr, isStringLiteralExpr, isSuperExpr, isThisExpr, isTypeExpr, isUnaryExpr, isVariableDeclarationExpr, toAnnotationExpr, toArrayAccessExpr, toArrayCreationExpr, toArrayInitializerExpr, toAssignExpr, toBinaryExpr, toBooleanLiteralExpr, toCastExpr, toCharLiteralExpr, toClassExpr, toConditionalExpr, toDoubleLiteralExpr, toEnclosedExpr, toFieldAccessExpr, toInstanceOfExpr, toIntegerLiteralExpr, toLambdaExpr, toLiteralExpr, toLiteralStringValueExpr, toLongLiteralExpr, toMarkerAnnotationExpr, toMethodCallExpr, toMethodReferenceExpr, toNameExpr, toNormalAnnotationExpr, toNullLiteralExpr, toSingleMemberAnnotationExpr, toStringLiteralExpr, toSuperExpr, toThisExpr, toTypeExpr, toUnaryExpr, toVariableDeclarationExpraddOrphanComment, containsData, customInitialization, equals, findAll, findAll, findCompilationUnit, findFirst, findFirst, findFirst, findParent, findRootNode, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getSymbolResolver, getTokenRange, hasComment, hashCode, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, stream, stream, toString, toString, tryAddImportToParentCompilationUnit, unregister, walk, walk, walkfinalize, getClass, notify, notifyAll, wait, wait, waitisUsingDiamondOperator, removeTypeArguments, setDiamondOperator, setTypeArgumentsgetTypeAsString, setType, setType, tryAddImportToParentCompilationUnitaddArgument, addArgument, getArgument, setArgumenttraverseScopegetAncestorOfTypecontainsWithin, getBegin, getEnd, isPositionedAfter, isPositionedBeforepublic ObjectCreationExpr()
public ObjectCreationExpr(Expression scope, ClassOrInterfaceType type, NodeList<Expression> arguments)
scope - may be nulltype - this is the class that the constructor is being called for.arguments - Any arguments to pass to the constructorpublic ObjectCreationExpr(Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody)
@Generated(value="com.github.javaparser.generator.core.node.MainConstructorGenerator") public ObjectCreationExpr(TokenRange tokenRange, Expression scope, ClassOrInterfaceType type, NodeList<Type> typeArguments, NodeList<Expression> arguments, NodeList<BodyDeclaration<?>> anonymousClassBody)
@Generated(value="com.github.javaparser.generator.core.node.AcceptGenerator") public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Visitableaccept in interface VisitableR - the type of the return value of the visitorA - the type the user argument passed to the visitorv - the visitor implementationarg - the argument passed to the visitor (of type A)@Generated(value="com.github.javaparser.generator.core.node.AcceptGenerator") public <A> void accept(VoidVisitor<A> v, A arg)
Visitable@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public Optional<NodeList<BodyDeclaration<?>>> getAnonymousClassBody()
public void addAnonymousClassBody(BodyDeclaration<?> body)
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public NodeList<Expression> getArguments()
getArguments in interface NodeWithArguments<ObjectCreationExpr>@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public Optional<Expression> getScope()
getScope in interface NodeWithOptionalScope<ObjectCreationExpr>@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ClassOrInterfaceType getType()
NodeWithTypegetType in interface NodeWithType<ObjectCreationExpr,ClassOrInterfaceType>@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ObjectCreationExpr setAnonymousClassBody(NodeList<BodyDeclaration<?>> anonymousClassBody)
anonymousClassBody - the anonymousClassBody, can be null or empty@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ObjectCreationExpr setArguments(NodeList<Expression> arguments)
setArguments in interface NodeWithArguments<ObjectCreationExpr>@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ObjectCreationExpr setScope(Expression scope)
setScope in interface NodeWithOptionalScope<ObjectCreationExpr>scope - the scope, can be null@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ObjectCreationExpr setType(ClassOrInterfaceType type)
NodeWithTypesetType in interface NodeWithType<ObjectCreationExpr,ClassOrInterfaceType>type - the type@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public Optional<NodeList<Type>> getTypeArguments()
getTypeArguments in interface NodeWithTypeArguments<ObjectCreationExpr>@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public ObjectCreationExpr setTypeArguments(NodeList<Type> typeArguments)
setTypeArguments in interface NodeWithTypeArguments<ObjectCreationExpr>typeArguments - the typeArguments, can be null@Generated(value="com.github.javaparser.generator.core.node.RemoveMethodGenerator") public boolean remove(Node node)
remove in class Expression@Generated(value="com.github.javaparser.generator.core.node.RemoveMethodGenerator") public ObjectCreationExpr removeScope()
removeScope in interface NodeWithOptionalScope<ObjectCreationExpr>@Generated(value="com.github.javaparser.generator.core.node.CloneGenerator") public ObjectCreationExpr clone()
clone in class Expression@Generated(value="com.github.javaparser.generator.core.node.GetMetaModelGenerator") public ObjectCreationExprMetaModel getMetaModel()
getMetaModel in class Expression@Generated(value="com.github.javaparser.generator.core.node.ReplaceMethodGenerator") public boolean replace(Node node, Node replacementNode)
replace in class Expression@Generated(value="com.github.javaparser.generator.core.node.TypeCastingGenerator") public boolean isObjectCreationExpr()
isObjectCreationExpr in class Expression@Generated(value="com.github.javaparser.generator.core.node.TypeCastingGenerator") public ObjectCreationExpr asObjectCreationExpr()
asObjectCreationExpr in class Expression@Generated(value="com.github.javaparser.generator.core.node.TypeCastingGenerator") public void ifObjectCreationExpr(Consumer<ObjectCreationExpr> action)
ifObjectCreationExpr in class Expressionpublic ResolvedConstructorDeclaration resolveInvokedConstructor()
@Generated(value="com.github.javaparser.generator.core.node.TypeCastingGenerator") public Optional<ObjectCreationExpr> toObjectCreationExpr()
toObjectCreationExpr in class ExpressionCopyright © 2007–2018. All rights reserved.