Package net.bytebuddy.dynamic.scaffold
Enum Class MethodGraph.Node.Unresolved
java.lang.Object
java.lang.Enum<MethodGraph.Node.Unresolved>
net.bytebuddy.dynamic.scaffold.MethodGraph.Node.Unresolved
- All Implemented Interfaces:
Serializable
,Comparable<MethodGraph.Node.Unresolved>
,Constable
,MethodGraph.Node
- Enclosing interface:
- MethodGraph.Node
public static enum MethodGraph.Node.Unresolved
extends Enum<MethodGraph.Node.Unresolved>
implements MethodGraph.Node
A canonical implementation of an unresolved node.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface net.bytebuddy.dynamic.scaffold.MethodGraph.Node
MethodGraph.Node.Simple, MethodGraph.Node.Sort, MethodGraph.Node.Unresolved
-
Enum Constant Summary
Enum Constants -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a set of type tokens that this method represents.Returns the method that is represented by this node.getSort()
Returns the sort of this node.Returns the minimal method visibility of all methods that are represented by this node.static MethodGraph.Node.Unresolved
Returns the enum constant of this class with the specified name.static MethodGraph.Node.Unresolved[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
The singleton instance.
-
-
Constructor Details
-
Unresolved
private Unresolved()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getSort
Returns the sort of this node.- Specified by:
getSort
in interfaceMethodGraph.Node
- Returns:
- The sort of this node.
-
getRepresentative
Returns the method that is represented by this node.- Specified by:
getRepresentative
in interfaceMethodGraph.Node
- Returns:
- The method that is represented by this node.
-
getMethodTypes
Returns a set of type tokens that this method represents. This set contains the actual method's type including the types of all bridge methods.- Specified by:
getMethodTypes
in interfaceMethodGraph.Node
- Returns:
- A set of type tokens that this method represents.
-
getVisibility
Returns the minimal method visibility of all methods that are represented by this node.- Specified by:
getVisibility
in interfaceMethodGraph.Node
- Returns:
- The minimal method visibility of all methods that are represented by this node.
-