jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/TypePath.java
changeset 32649 2ee9017c7597
parent 27195 b33768211561
child 36635 f0147be2f50f
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    69 
    69 
    70     /**
    70     /**
    71      * A type path step that steps into the element type of an array type. See
    71      * A type path step that steps into the element type of an array type. See
    72      * {@link #getStep getStep}.
    72      * {@link #getStep getStep}.
    73      */
    73      */
    74     public final static int ARRAY_ELEMENT = 0;
    74     public static final int ARRAY_ELEMENT = 0;
    75 
    75 
    76     /**
    76     /**
    77      * A type path step that steps into the nested type of a class type. See
    77      * A type path step that steps into the nested type of a class type. See
    78      * {@link #getStep getStep}.
    78      * {@link #getStep getStep}.
    79      */
    79      */
    80     public final static int INNER_TYPE = 1;
    80     public static final int INNER_TYPE = 1;
    81 
    81 
    82     /**
    82     /**
    83      * A type path step that steps into the bound of a wildcard type. See
    83      * A type path step that steps into the bound of a wildcard type. See
    84      * {@link #getStep getStep}.
    84      * {@link #getStep getStep}.
    85      */
    85      */
    86     public final static int WILDCARD_BOUND = 2;
    86     public static final int WILDCARD_BOUND = 2;
    87 
    87 
    88     /**
    88     /**
    89      * A type path step that steps into a type argument of a generic type. See
    89      * A type path step that steps into a type argument of a generic type. See
    90      * {@link #getStep getStep}.
    90      * {@link #getStep getStep}.
    91      */
    91      */
    92     public final static int TYPE_ARGUMENT = 3;
    92     public static final int TYPE_ARGUMENT = 3;
    93 
    93 
    94     /**
    94     /**
    95      * The byte array where the path is stored, in Java class file format.
    95      * The byte array where the path is stored, in Java class file format.
    96      */
    96      */
    97     byte[] b;
    97     byte[] b;