Enum MethodGraph.Node.Unresolved

    • Constructor Detail

      • Unresolved

        private Unresolved()
    • Method Detail

      • values

        public static MethodGraph.Node.Unresolved[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (MethodGraph.Node.Unresolved c : MethodGraph.Node.Unresolved.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MethodGraph.Node.Unresolved valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getMethodTypes

        public java.util.Set<MethodDescription.TypeToken> 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 interface MethodGraph.Node
        Returns:
        A set of type tokens that this method represents.
      • getVisibility

        public Visibility getVisibility()
        Returns the minimal method visibility of all methods that are represented by this node.
        Specified by:
        getVisibility in interface MethodGraph.Node
        Returns:
        The minimal method visibility of all methods that are represented by this node.