|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjersey.repackaged.org.objectweb.asm.Handle
public final class Handle
A reference to a field or a method.
| Constructor Summary | |
|---|---|
Handle(int tag,
java.lang.String owner,
java.lang.String name,
java.lang.String desc)
Constructs a new field or method handle. |
|
| Method Summary | |
|---|---|
boolean |
equals(java.lang.Object obj)
|
java.lang.String |
getDesc()
Returns the descriptor of the field or method designated by this handle. |
java.lang.String |
getName()
Returns the name of the field or method designated by this handle. |
java.lang.String |
getOwner()
Returns the internal name of the class that owns the field or method designated by this handle. |
int |
getTag()
Returns the kind of field or method designated by this handle. |
int |
hashCode()
|
java.lang.String |
toString()
Returns the textual representation of this handle. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public Handle(int tag,
java.lang.String owner,
java.lang.String name,
java.lang.String desc)
tag - the kind of field or method designated by this Handle. Must be
Opcodes.H_GETFIELD, Opcodes.H_GETSTATIC,
Opcodes.H_PUTFIELD, Opcodes.H_PUTSTATIC,
Opcodes.H_INVOKEVIRTUAL,
Opcodes.H_INVOKESTATIC,
Opcodes.H_INVOKESPECIAL,
Opcodes.H_NEWINVOKESPECIAL or
Opcodes.H_INVOKEINTERFACE.owner - the internal name of the class that owns the field or method
designated by this handle.name - the name of the field or method designated by this handle.desc - the descriptor of the field or method designated by this
handle.| Method Detail |
|---|
public int getTag()
Opcodes.H_GETFIELD, Opcodes.H_GETSTATIC,
Opcodes.H_PUTFIELD, Opcodes.H_PUTSTATIC,
Opcodes.H_INVOKEVIRTUAL, Opcodes.H_INVOKESTATIC,
Opcodes.H_INVOKESPECIAL,
Opcodes.H_NEWINVOKESPECIAL or
Opcodes.H_INVOKEINTERFACE.public java.lang.String getOwner()
public java.lang.String getName()
public java.lang.String getDesc()
public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
owner '.' name desc ' ' '(' tag ')'
. As this format is unambiguous, it can be parsed if necessary.
toString in class java.lang.Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||