Class NodeType


  • public class NodeType
    extends java.lang.Object
    The type Node type.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int CLASS
      The constant CLASS.
      static int ENTRYPOINT
      The constant ENTRYPOINT.
      static int FIELD
      The constant FIELD.
      static int INTERFACE
      The constant INTERFACE.
      static int METHOD
      The constant METHOD.
      static int NEW
      The constant NEW.
      static int OBSOLETE
      The constant OBSOLETE.
      static int STATIC
      The constant STATIC.
      static int STUB
      The constant STUB.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean isInterfaceNode​(int nodeType)
      Is interface node boolean.
      static boolean isMethodNode​(int nodeType)
      Is method node boolean.
      static boolean isNewNode​(int nodeType)
      Is new node boolean.
      static boolean isObsolete​(int nodeType)
      Is obsolete boolean.
      static boolean isStatic​(int nodeType)
      Is static boolean.
      static boolean isStubNeeded​(int nodeType)
      Is stub needed boolean.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • isObsolete

        public static boolean isObsolete​(int nodeType)
        Is obsolete boolean.
        Parameters:
        nodeType - the node type
        Returns:
        the boolean
      • isStatic

        public static boolean isStatic​(int nodeType)
        Is static boolean.
        Parameters:
        nodeType - the node type
        Returns:
        the boolean
      • isStubNeeded

        public static boolean isStubNeeded​(int nodeType)
        Is stub needed boolean.
        Parameters:
        nodeType - the node type
        Returns:
        the boolean
      • isMethodNode

        public static boolean isMethodNode​(int nodeType)
        Is method node boolean.
        Parameters:
        nodeType - the node type
        Returns:
        the boolean
      • isInterfaceNode

        public static boolean isInterfaceNode​(int nodeType)
        Is interface node boolean.
        Parameters:
        nodeType - the node type
        Returns:
        the boolean
      • isNewNode

        public static boolean isNewNode​(int nodeType)
        Is new node boolean.
        Parameters:
        nodeType - the node type
        Returns:
        the boolean