Lines Matching refs:constantIndex
74 public Constant getConstant(int constantIndex) in getConstant() argument
76 return constantPool[constantIndex]; in getConstant()
107 public int getTag(int constantIndex) in getTag() argument
109 return constantPool[constantIndex].getTag(); in getTag()
112 public String getString(int constantIndex) in getString() argument
116 return ((Utf8Constant)constantPool[constantIndex]).getString(); in getString()
120 …xception)new IllegalStateException("Expected Utf8Constant at index ["+constantIndex+"] in class ["… in getString()
124 public String getStringString(int constantIndex) in getStringString() argument
128 return ((StringConstant)constantPool[constantIndex]).getString(this); in getStringString()
132 …eption)new IllegalStateException("Expected StringConstant at index ["+constantIndex+"] in class ["… in getStringString()
136 public String getClassName(int constantIndex) in getClassName() argument
140 return ((ClassConstant)constantPool[constantIndex]).getName(this); in getClassName()
144 …ception)new IllegalStateException("Expected ClassConstant at index ["+constantIndex+"] in class ["… in getClassName()
148 public String getName(int constantIndex) in getName() argument
152 return ((NameAndTypeConstant)constantPool[constantIndex]).getName(this); in getName()
156 …n)new IllegalStateException("Expected NameAndTypeConstant at index ["+constantIndex+"] in class ["… in getName()
160 public String getType(int constantIndex) in getType() argument
164 return ((NameAndTypeConstant)constantPool[constantIndex]).getType(this); in getType()
168 …n)new IllegalStateException("Expected NameAndTypeConstant at index ["+constantIndex+"] in class ["… in getType()
173 public String getRefClassName(int constantIndex) in getRefClassName() argument
177 return ((RefConstant)constantPool[constantIndex]).getClassName(this); in getRefClassName()
181 …Exception)new IllegalStateException("Expected RefConstant at index ["+constantIndex+"] in class ["… in getRefClassName()
185 public String getRefName(int constantIndex) in getRefName() argument
189 return ((RefConstant)constantPool[constantIndex]).getName(this); in getRefName()
193 …Exception)new IllegalStateException("Expected RefConstant at index ["+constantIndex+"] in class ["… in getRefName()
197 public String getRefType(int constantIndex) in getRefType() argument
201 return ((RefConstant)constantPool[constantIndex]).getType(this); in getRefType()
205 …Exception)new IllegalStateException("Expected RefConstant at index ["+constantIndex+"] in class ["… in getRefType()