public static enum ReferenceGraph.ReentryMode extends Enum<ReferenceGraph.ReentryMode>
ModuleVersion has already
been visisted during the traversal of a ReferenceGraph.| Enum Constant and Description |
|---|
NO_REENTRY
Reentry is avoided altogether.
|
ONLY_PARENT
Reentry is avoided, but when a
ModuleVersion that is encountered has
already been visited, it is visited again with ReferenceGraph.VisitAction.REPEATED,
but its children are not. |
REENTRY
ModuleVersion's in the ReferenceGraph are all visited. |
| Modifier and Type | Method and Description |
|---|---|
static ReferenceGraph.ReentryMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReferenceGraph.ReentryMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReferenceGraph.ReentryMode REENTRY
ModuleVersion's in the ReferenceGraph are all visited.public static final ReferenceGraph.ReentryMode ONLY_PARENT
ModuleVersion that is encountered has
already been visited, it is visited again with ReferenceGraph.VisitAction.REPEATED,
but its children are not.public static final ReferenceGraph.ReentryMode NO_REENTRY
ModuleVersion will not be
visited twice.public static ReferenceGraph.ReentryMode[] values()
for (ReferenceGraph.ReentryMode c : ReferenceGraph.ReentryMode.values()) System.out.println(c);
public static ReferenceGraph.ReentryMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2017 AZYVA INC.. All rights reserved.