public static enum MethodGraph.Node.Sort extends Enum<MethodGraph.Node.Sort>
MethodGraph.Node
's state.Enum Constant and Description |
---|
AMBIGUOUS
Represents an ambiguous node, i.e.
|
RESOLVED
Represents a resolved node that was not made visible by a visibility bridge.
|
UNRESOLVED
Represents an unresolved node.
|
VISIBLE
Represents a resolved node that was made visible by a visibility bridge.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isMadeVisible()
Verifies if this sort represents a node that was made visible by a visibility bridge.
|
boolean |
isResolved()
Verifies if this sort represents a resolved node.
|
boolean |
isUnique()
Verifies if this sort represents a non-ambiguous node.
|
static MethodGraph.Node.Sort |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodGraph.Node.Sort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodGraph.Node.Sort VISIBLE
public static final MethodGraph.Node.Sort RESOLVED
public static final MethodGraph.Node.Sort AMBIGUOUS
public static final MethodGraph.Node.Sort UNRESOLVED
public static MethodGraph.Node.Sort[] values()
for (MethodGraph.Node.Sort c : MethodGraph.Node.Sort.values()) System.out.println(c);
public static MethodGraph.Node.Sort 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 nullpublic boolean isResolved()
true
if this sort represents a resolved node.public boolean isUnique()
true
if this sort represents a non-ambiguous node.public boolean isMadeVisible()
true
if this sort represents a node that was made visible by a visibility bridge.Copyright © 2014–2020. All rights reserved.