/src/java/org/apache/cassandra/cql3/functions/types/GettableByIndexData.java

https://github.com/apache/cassandra · Java · 592 lines · 42 code · 34 blank · 516 comment · 0 complexity · 99d32985475989e26e47032abc4e1cb3 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.apache.cassandra.cql3.functions.types;
  19. import java.math.BigDecimal;
  20. import java.math.BigInteger;
  21. import java.net.InetAddress;
  22. import java.nio.ByteBuffer;
  23. import java.util.*;
  24. import com.google.common.reflect.TypeToken;
  25. import org.apache.cassandra.cql3.functions.types.exceptions.CodecNotFoundException;
  26. import org.apache.cassandra.cql3.functions.types.exceptions.InvalidTypeException;
  27. /**
  28. * Collection of (typed) CQL values that can be retrieved by index (starting at zero).
  29. */
  30. public interface GettableByIndexData
  31. {
  32. /**
  33. * Returns whether the {@code i}th value is NULL.
  34. *
  35. * @param i the index ({@code 0 <= i < size()}) of the value to check.
  36. * @return whether the {@code i}th value is NULL.
  37. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  38. */
  39. public boolean isNull(int i);
  40. /**
  41. * Returns the {@code i}th value as a boolean.
  42. *
  43. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  44. * type to a Java {@code boolean} (for CQL type {@code boolean}, this will be the built-in codec).
  45. *
  46. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  47. * @return the boolean value of the {@code i}th element. If the value is NULL, {@code false} is
  48. * returned. If you need to distinguish NULL and false values, check first with {@link
  49. * #isNull(int)} or use {@code get(i, Boolean.class)}.
  50. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  51. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  52. * type to a boolean.
  53. */
  54. public boolean getBool(int i);
  55. /**
  56. * Returns the {@code i}th value as a byte.
  57. *
  58. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  59. * type to a Java {@code byte} (for CQL type {@code tinyint}, this will be the built-in codec).
  60. *
  61. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  62. * @return the value of the {@code i}th element as a byte. If the value is NULL, {@code 0} is
  63. * returned. If you need to distinguish NULL and 0, check first with {@link #isNull(int)} or
  64. * use {@code get(i, Byte.class)}.
  65. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  66. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  67. * type to a byte.
  68. */
  69. public byte getByte(int i);
  70. /**
  71. * Returns the {@code i}th value as a short.
  72. *
  73. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  74. * type to a Java {@code short} (for CQL type {@code smallint}, this will be the built-in codec).
  75. *
  76. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  77. * @return the value of the {@code i}th element as a short. If the value is NULL, {@code 0} is
  78. * returned. If you need to distinguish NULL and 0, check first with {@link #isNull(int)} or
  79. * use {@code get(i, Short.class)}.
  80. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  81. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  82. * type to a short.
  83. */
  84. public short getShort(int i);
  85. /**
  86. * Returns the {@code i}th value as an integer.
  87. *
  88. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  89. * type to a Java {@code int} (for CQL type {@code int}, this will be the built-in codec).
  90. *
  91. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  92. * @return the value of the {@code i}th element as an integer. If the value is NULL, {@code 0} is
  93. * returned. If you need to distinguish NULL and 0, check first with {@link #isNull(int)} or
  94. * use {@code get(i, Integer.class)}.
  95. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  96. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  97. * type to an int.
  98. */
  99. public int getInt(int i);
  100. /**
  101. * Returns the {@code i}th value as a long.
  102. *
  103. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  104. * type to a Java {@code byte} (for CQL types {@code bigint} and {@code counter}, this will be the
  105. * built-in codec).
  106. *
  107. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  108. * @return the value of the {@code i}th element as a long. If the value is NULL, {@code 0L} is
  109. * returned. If you need to distinguish NULL and 0L, check first with {@link #isNull(int)} or
  110. * use {@code get(i, Long.class)}.
  111. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  112. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  113. * type to a long.
  114. */
  115. public long getLong(int i);
  116. /**
  117. * Returns the {@code i}th value as a date.
  118. *
  119. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  120. * type to a {@code Date} (for CQL type {@code timestamp}, this will be the built-in codec).
  121. *
  122. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  123. * @return the value of the {@code i}th element as a data. If the value is NULL, {@code null} is
  124. * returned.
  125. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  126. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  127. * type to a {@code Date}.
  128. */
  129. public Date getTimestamp(int i);
  130. /**
  131. * Returns the {@code i}th value as a date (without time).
  132. *
  133. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  134. * type to a {@link LocalDate} (for CQL type {@code date}, this will be the built-in codec).
  135. *
  136. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  137. * @return the value of the {@code i}th element as an date. If the value is NULL, {@code null} is
  138. * returned.
  139. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  140. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  141. * type to a {@code LocalDate}.
  142. */
  143. public LocalDate getDate(int i);
  144. /**
  145. * Returns the {@code i}th value as a long in nanoseconds since midnight.
  146. *
  147. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  148. * type to a Java {@code long} (for CQL type {@code time}, this will be the built-in codec).
  149. *
  150. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  151. * @return the value of the {@code i}th element as a long. If the value is NULL, {@code 0L} is
  152. * returned.
  153. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  154. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  155. * type to a long.
  156. */
  157. public long getTime(int i);
  158. /**
  159. * Returns the {@code i}th value as a float.
  160. *
  161. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  162. * type to a Java {@code float} (for CQL type {@code float}, this will be the built-in codec).
  163. *
  164. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  165. * @return the value of the {@code i}th element as a float. If the value is NULL, {@code 0.0f} is
  166. * returned. If you need to distinguish NULL and 0.0f, check first with {@link #isNull(int)}
  167. * or use {@code get(i, Float.class)}.
  168. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  169. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  170. * type to a float.
  171. */
  172. public float getFloat(int i);
  173. /**
  174. * Returns the {@code i}th value as a double.
  175. *
  176. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  177. * type to a Java {@code double} (for CQL type {@code double}, this will be the built-in codec).
  178. *
  179. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  180. * @return the value of the {@code i}th element as a double. If the value is NULL, {@code 0.0} is
  181. * returned. If you need to distinguish NULL and 0.0, check first with {@link #isNull(int)} or
  182. * use {@code get(i, Double.class)}.
  183. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  184. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  185. * type to a double.
  186. */
  187. public double getDouble(int i);
  188. /**
  189. * Returns the {@code i}th value as a {@code ByteBuffer}.
  190. *
  191. * <p>This method does not use any codec; it returns a copy of the binary representation of the
  192. * value. It is up to the caller to convert the returned value appropriately.
  193. *
  194. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  195. * @return the value of the {@code i}th element as a ByteBuffer. If the value is NULL, {@code
  196. * null} is returned.
  197. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  198. */
  199. public ByteBuffer getBytesUnsafe(int i);
  200. /**
  201. * Returns the {@code i}th value as a byte array.
  202. *
  203. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  204. * type to a Java {@code ByteBuffer} (for CQL type {@code blob}, this will be the built-in codec).
  205. *
  206. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  207. * @return the value of the {@code i}th element as a byte array. If the value is NULL, {@code
  208. * null} is returned.
  209. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  210. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  211. * type to a {@code ByteBuffer}.
  212. */
  213. public ByteBuffer getBytes(int i);
  214. /**
  215. * Returns the {@code i}th value as a string.
  216. *
  217. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  218. * type to a Java string (for CQL types {@code text}, {@code varchar} and {@code ascii}, this will
  219. * be the built-in codec).
  220. *
  221. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  222. * @return the value of the {@code i}th element as a string. If the value is NULL, {@code null} is
  223. * returned.
  224. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  225. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  226. * type to a string.
  227. */
  228. public String getString(int i);
  229. /**
  230. * Returns the {@code i}th value as a variable length integer.
  231. *
  232. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  233. * type to a {@code BigInteger} (for CQL type {@code varint}, this will be the built-in codec).
  234. *
  235. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  236. * @return the value of the {@code i}th element as a variable length integer. If the value is
  237. * NULL, {@code null} is returned.
  238. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  239. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  240. * type to a {@code BigInteger}.
  241. */
  242. public BigInteger getVarint(int i);
  243. /**
  244. * Returns the {@code i}th value as a variable length decimal.
  245. *
  246. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  247. * type to a {@code BigDecimal} (for CQL type {@code decimal}, this will be the built-in codec).
  248. *
  249. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  250. * @return the value of the {@code i}th element as a variable length decimal. If the value is
  251. * NULL, {@code null} is returned.
  252. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  253. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  254. * type to a {@code BigDecimal}.
  255. */
  256. public BigDecimal getDecimal(int i);
  257. /**
  258. * Returns the {@code i}th value as a UUID.
  259. *
  260. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  261. * type to a {@code UUID} (for CQL types {@code uuid} and {@code timeuuid}, this will be the
  262. * built-in codec).
  263. *
  264. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  265. * @return the value of the {@code i}th element as a UUID. If the value is NULL, {@code null} is
  266. * returned.
  267. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  268. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  269. * type to a {@code UUID}.
  270. */
  271. public UUID getUUID(int i);
  272. /**
  273. * Returns the {@code i}th value as an InetAddress.
  274. *
  275. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  276. * type to an {@code InetAddress} (for CQL type {@code inet}, this will be the built-in codec).
  277. *
  278. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  279. * @return the value of the {@code i}th element as an InetAddress. If the value is NULL, {@code
  280. * null} is returned.
  281. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  282. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  283. * type to a {@code InetAddress}.
  284. */
  285. public InetAddress getInet(int i);
  286. /**
  287. * Returns the {@code i}th value as a list.
  288. *
  289. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  290. * type to a list of the specified type.
  291. *
  292. * <p>If the type of the elements is generic, use {@link #getList(int, TypeToken)}.
  293. *
  294. * <p>Implementation note: the actual {@link List} implementation will depend on the {@link
  295. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  296. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  297. * {@code NULL} values is also codec-dependent. By default, the driver will return mutable
  298. * instances, and a CQL {@code NULL} will be mapped to an empty collection (note that Cassandra
  299. * makes no distinction between {@code NULL} and an empty collection).
  300. *
  301. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  302. * @param elementsClass the class for the elements of the list to retrieve.
  303. * @return the value of the {@code i}th element as a list of {@code T} objects.
  304. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  305. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  306. * type to a list.
  307. */
  308. public <T> List<T> getList(int i, Class<T> elementsClass);
  309. /**
  310. * Returns the {@code i}th value as a list.
  311. *
  312. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  313. * type to a list of the specified type.
  314. *
  315. * <p>Use this variant with nested collections, which produce a generic element type:
  316. *
  317. * <pre>
  318. * {@code List<List<String>> l = row.getList(1, new TypeToken<List<String>>() {});}
  319. * </pre>
  320. *
  321. * <p>Implementation note: the actual {@link List} implementation will depend on the {@link
  322. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  323. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  324. * {@code NULL} values is also codec-dependent. By default, the driver will return mutable
  325. * instances, and a CQL {@code NULL} will mapped to an empty collection (note that Cassandra makes
  326. * no distinction between {@code NULL} and an empty collection).
  327. *
  328. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  329. * @param elementsType the type of the elements of the list to retrieve.
  330. * @return the value of the {@code i}th element as a list of {@code T} objects.
  331. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  332. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  333. * type to a list.
  334. */
  335. public <T> List<T> getList(int i, TypeToken<T> elementsType);
  336. /**
  337. * Returns the {@code i}th value as a set.
  338. *
  339. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  340. * type to a set of the specified type.
  341. *
  342. * <p>If the type of the elements is generic, use {@link #getSet(int, TypeToken)}.
  343. *
  344. * <p>Implementation note: the actual {@link Set} implementation will depend on the {@link
  345. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  346. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  347. * {@code NULL} values is also codec-dependent. By default, the driver will return mutable
  348. * instances, and a CQL {@code NULL} will mapped to an empty collection (note that Cassandra makes
  349. * no distinction between {@code NULL} and an empty collection).
  350. *
  351. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  352. * @param elementsClass the class for the elements of the set to retrieve.
  353. * @return the value of the {@code i}th element as a set of {@code T} objects.
  354. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  355. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  356. * type to a set.
  357. */
  358. public <T> Set<T> getSet(int i, Class<T> elementsClass);
  359. /**
  360. * Returns the {@code i}th value as a set.
  361. *
  362. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  363. * type to a set of the specified type.
  364. *
  365. * <p>Use this variant with nested collections, which produce a generic element type:
  366. *
  367. * <pre>
  368. * {@code Set<List<String>> l = row.getSet(1, new TypeToken<List<String>>() {});}
  369. * </pre>
  370. *
  371. * <p>Implementation note: the actual {@link Set} implementation will depend on the {@link
  372. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  373. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  374. * {@code NULL} values is also codec-dependent. By default, the driver will return mutable
  375. * instances, and a CQL {@code NULL} will mapped to an empty collection (note that Cassandra makes
  376. * no distinction between {@code NULL} and an empty collection).
  377. *
  378. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  379. * @param elementsType the type for the elements of the set to retrieve.
  380. * @return the value of the {@code i}th element as a set of {@code T} objects.
  381. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  382. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  383. * type to a set.
  384. */
  385. public <T> Set<T> getSet(int i, TypeToken<T> elementsType);
  386. /**
  387. * Returns the {@code i}th value as a map.
  388. *
  389. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  390. * type to a map of the specified types.
  391. *
  392. * <p>If the type of the keys and/or values is generic, use {@link #getMap(int, TypeToken,
  393. * TypeToken)}.
  394. *
  395. * <p>Implementation note: the actual {@link Map} implementation will depend on the {@link
  396. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  397. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  398. * {@code NULL} values is also codec-dependent. By default, the driver will return mutable
  399. * instances, and a CQL {@code NULL} will mapped to an empty collection (note that Cassandra makes
  400. * no distinction between {@code NULL} and an empty collection).
  401. *
  402. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  403. * @param keysClass the class for the keys of the map to retrieve.
  404. * @param valuesClass the class for the values of the map to retrieve.
  405. * @return the value of the {@code i}th element as a map of {@code K} to {@code V} objects.
  406. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  407. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  408. * type to a map.
  409. */
  410. public <K, V> Map<K, V> getMap(int i, Class<K> keysClass, Class<V> valuesClass);
  411. /**
  412. * Returns the {@code i}th value as a map.
  413. *
  414. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  415. * type to a map of the specified types.
  416. *
  417. * <p>Use this variant with nested collections, which produce a generic element type:
  418. *
  419. * <pre>
  420. * {@code Map<Int, List<String>> l = row.getMap(1, TypeToken.of(Integer.class), new TypeToken<List<String>>() {});}
  421. * </pre>
  422. *
  423. * <p>Implementation note: the actual {@link Map} implementation will depend on the {@link
  424. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  425. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  426. * {@code NULL} values is also codec-dependent. By default, the driver will return mutable
  427. * instances, and a CQL {@code NULL} will mapped to an empty collection (note that Cassandra makes
  428. * no distinction between {@code NULL} and an empty collection).
  429. *
  430. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  431. * @param keysType the type for the keys of the map to retrieve.
  432. * @param valuesType the type for the values of the map to retrieve.
  433. * @return the value of the {@code i}th element as a map of {@code K} to {@code V} objects.
  434. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  435. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  436. * type to a map.
  437. */
  438. public <K, V> Map<K, V> getMap(int i, TypeToken<K> keysType, TypeToken<V> valuesType);
  439. /**
  440. * Return the {@code i}th value as a UDT value.
  441. *
  442. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  443. * type to a {@code UDTValue} (if the CQL type is a UDT, the registry will generate a codec
  444. * automatically).
  445. *
  446. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  447. * @return the value of the {@code i}th element as a UDT value. If the value is NULL, then {@code
  448. * null} will be returned.
  449. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  450. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  451. * type to a {@code UDTValue}.
  452. */
  453. public UDTValue getUDTValue(int i);
  454. /**
  455. * Return the {@code i}th value as a tuple value.
  456. *
  457. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  458. * type to a {@code TupleValue} (if the CQL type is a tuple, the registry will generate a codec
  459. * automatically).
  460. *
  461. * @param i the index ({@code 0 <= i < size()}) to retrieve.
  462. * @return the value of the {@code i}th element as a tuple value. If the value is NULL, then
  463. * {@code null} will be returned.
  464. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  465. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  466. * type to a {@code TupleValue}.
  467. */
  468. public TupleValue getTupleValue(int i);
  469. /**
  470. * Returns the {@code i}th value as the Java type matching its CQL type.
  471. *
  472. * <p>This method uses the {@link CodecRegistry} to find the first codec that handles the
  473. * underlying CQL type. The Java type of the returned object will be determined by the codec that
  474. * was selected.
  475. *
  476. * <p>Use this method to dynamically inspect elements when types aren't known in advance, for
  477. * instance if you're writing a generic row logger. If you know the target Java type, it is
  478. * generally preferable to use typed getters, such as the ones for built-in types ({@link
  479. * #getBool(int)}, {@link #getInt(int)}, etc.), or {@link #get(int, Class)} and {@link #get(int,
  480. * TypeToken)} for custom types.
  481. *
  482. * @param i the index to retrieve.
  483. * @return the value of the {@code i}th value as the Java type matching its CQL type.
  484. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  485. * @see CodecRegistry#codecFor(DataType)
  486. */
  487. public Object getObject(int i);
  488. /**
  489. * Returns the {@code i}th value converted to the given Java type.
  490. *
  491. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  492. * type to the given Java type.
  493. *
  494. * <p>If the target type is generic, use {@link #get(int, TypeToken)}.
  495. *
  496. * <p>Implementation note: the actual object returned by this method will depend on the {@link
  497. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  498. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  499. * {@code NULL} values is also codec-dependent; by default, a CQL {@code NULL} value translates to
  500. * {@code null} for simple CQL types, UDTs and tuples, and to empty collections for all CQL
  501. * collection types.
  502. *
  503. * @param i the index to retrieve.
  504. * @param targetClass The Java type the value should be converted to.
  505. * @return the value of the {@code i}th value converted to the given Java type.
  506. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  507. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  508. * type to {@code targetClass}.
  509. */
  510. <T> T get(int i, Class<T> targetClass);
  511. /**
  512. * Returns the {@code i}th value converted to the given Java type.
  513. *
  514. * <p>This method uses the {@link CodecRegistry} to find a codec to convert the underlying CQL
  515. * type to the given Java type.
  516. *
  517. * <p>Implementation note: the actual object returned by this method will depend on the {@link
  518. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  519. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  520. * {@code NULL} values is also codec-dependent; by default, a CQL {@code NULL} value translates to
  521. * {@code null} for simple CQL types, UDTs and tuples, and to empty collections for all CQL
  522. * collection types.
  523. *
  524. * @param i the index to retrieve.
  525. * @param targetType The Java type the value should be converted to.
  526. * @return the value of the {@code i}th value converted to the given Java type.
  527. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  528. * @throws CodecNotFoundException if there is no registered codec to convert the element's CQL
  529. * type to {@code targetType}.
  530. */
  531. <T> T get(int i, TypeToken<T> targetType);
  532. /**
  533. * Returns the {@code i}th value converted using the given {@link TypeCodec}.
  534. *
  535. * <p>This method entirely bypasses the {@link CodecRegistry} and forces the driver to use the
  536. * given codec instead. This can be useful if the codec would collide with a previously registered
  537. * one, or if you want to use the codec just once without registering it.
  538. *
  539. * <p>It is the caller's responsibility to ensure that the given codec {@link
  540. * TypeCodec#accepts(DataType) accepts} the underlying CQL type; failing to do so may result in
  541. * {@link InvalidTypeException}s being thrown.
  542. *
  543. * <p>Implementation note: the actual object returned by this method will depend on the {@link
  544. * TypeCodec codec} being used; therefore, callers should make no assumptions concerning its
  545. * mutability nor its thread-safety. Furthermore, the behavior of this method in respect to CQL
  546. * {@code NULL} values is also codec-dependent; by default, a CQL {@code NULL} value translates to
  547. * {@code null} for simple CQL types, UDTs and tuples, and to empty collections for all CQL
  548. * collection types.
  549. *
  550. * @param i the index to retrieve.
  551. * @param codec The {@link TypeCodec} to use to deserialize the value; may not be {@code null}.
  552. * @return the value of the {@code i}th value converted using the given {@link TypeCodec}.
  553. * @throws InvalidTypeException if the given codec does not {@link TypeCodec#accepts(DataType)
  554. * accept} the underlying CQL type.
  555. * @throws IndexOutOfBoundsException if {@code i} is not a valid index for this object.
  556. */
  557. <T> T get(int i, TypeCodec<T> codec);
  558. }