1 11 package org.eclipse.jdt.core.util; 12 13 21 public interface IConstantPoolEntry { 22 23 28 int getKind(); 29 30 36 int getClassInfoNameIndex(); 37 38 46 int getClassIndex(); 47 48 56 int getNameAndTypeIndex(); 57 58 64 int getStringIndex(); 65 66 72 String getStringValue(); 73 74 80 int getIntegerValue(); 81 82 88 float getFloatValue(); 89 90 96 double getDoubleValue(); 97 98 104 long getLongValue(); 105 106 112 int getNameAndTypeInfoDescriptorIndex(); 113 114 120 int getNameAndTypeInfoNameIndex(); 121 122 128 char[] getClassInfoName(); 129 130 138 char[] getClassName(); 139 140 146 char[] getFieldName(); 147 148 156 char[] getMethodName(); 157 158 166 char[] getFieldDescriptor(); 167 168 178 char[] getMethodDescriptor(); 179 180 188 char[] getUtf8Value(); 189 190 198 int getUtf8Length(); 199 } 200 | Popular Tags |