パッケージ org.postgresql.util

クラス IntList

java.lang.Object
org.postgresql.util.IntList

public final class IntList extends Object
A specialized class to store a list of int values, so it does not need auto-boxing. Note: this is a driver-internal class, and it is not intended to be used outside the driver.
  • コンストラクタの詳細

    • IntList

      public IntList()
  • メソッドの詳細

    • add

      public void add(int i)
    • size

      public int size()
    • get

      public int get(int i)
    • clear

      public void clear()
    • toArray

      public int[] toArray()
      Returns an array containing all the elements in this list. The modifications of the returned array will not affect this list.
      戻り値:
      an array containing all the elements in this list
    • toString

      public String toString()
      オーバーライド:
      toString クラス内 Object