Enum MethodGraph.Empty

    • Enum Constant Detail

    • Method Detail

      • values

        public static MethodGraph.Empty[] 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.Empty c : MethodGraph.Empty.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.Empty 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
      • getSuperClassGraph

        public MethodGraph getSuperClassGraph()
        Description copied from interface: MethodGraph.Linked
        Returns a graph representing the view on this represented type's super type.
        Specified by:
        getSuperClassGraph in interface MethodGraph.Linked
        Returns:
        A graph representing the view on this represented type's super type.
      • getInterfaceGraph

        public MethodGraph getInterfaceGraph​(TypeDescription typeDescription)
        Description copied from interface: MethodGraph.Linked
        Returns a graph representing the view on this represented type's directly implemented interface type.
        Specified by:
        getInterfaceGraph in interface MethodGraph.Linked
        Parameters:
        typeDescription - The interface type for which a view is to be returned.
        Returns:
        A graph representing the view on this represented type's directly implemented interface type.