All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.snowflake.client.util.VariableTypeArray Maven / Gradle / Ivy

There is a newer version: 3.18.0
Show newest version
package net.snowflake.client.util;

public class VariableTypeArray
{
  public int[] intArr;
  public long[] longArr;

  public VariableTypeArray(int[] arr1, long[] arr2)
  {
    intArr = arr1;
    longArr = arr2;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy