Lines Matching refs:index

66     public static boolean get_boolean(int index) {  in get_boolean()  argument
67 return PRIMITIVE_BOOLEANS[index]; in get_boolean()
70 public static Boolean get_Boolean(int index) { in get_Boolean() argument
71 return BOOLEANS[index]; in get_Boolean()
74 public static byte get_byte(int index) { in get_byte() argument
75 return PRIMITIVE_BYTES[index]; in get_byte()
78 public static Byte get_Byte(int index) { in get_Byte() argument
79 return BYTES[index]; in get_Byte()
82 public static short get_short(int index) { in get_short() argument
83 return PRIMITIVE_SHORTS[index]; in get_short()
86 public static Short get_Short(int index) { in get_Short() argument
87 return SHORTS[index]; in get_Short()
90 public static char get_char(int index) { in get_char() argument
91 return PRIMITIVE_CHARS[index]; in get_char()
94 public static Character get_Character(int index) { in get_Character() argument
95 return CHARACTERS[index]; in get_Character()
98 public static int get_int(int index) { in get_int() argument
99 return PRIMITIVE_INTS[index]; in get_int()
102 public static Integer get_Integer(int index) { in get_Integer() argument
103 return INTEGERS[index]; in get_Integer()
106 public static long get_long(int index) { in get_long() argument
107 return PRIMITIVE_LONGS[index]; in get_long()
110 public static Long get_Long(int index) { in get_Long() argument
111 return LONGS[index]; in get_Long()
114 public static float get_float(int index) { in get_float() argument
115 return PRIMITIVE_FLOATS[index]; in get_float()
118 public static Float get_Float(int index) { in get_Float() argument
119 return FLOATS[index]; in get_Float()
122 public static double get_double(int index) { in get_double() argument
123 return PRIMITIVE_DOUBLES[index]; in get_double()
126 public static Double get_Double(int index) { in get_Double() argument
127 return DOUBLES[index]; in get_Double()