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

com.databricks.jdbc.common.Nullable Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.databricks.jdbc.common;

public enum Nullable {
  NO_NULLS(0),
  NULLABLE(1),
  UNKNOWN(2);

  private final int nullableValue;

  Nullable(int value) {
    this.nullableValue = value;
  }

  public int getValue() {
    return this.nullableValue;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy