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

oracle.sql.INTERVALDS Maven / Gradle / Ivy

The newest version!
package oracle.sql;

/**
 * Dummy {@code INTERVALDS} interface which avoids a dependency to OJDBC.
 */
public class INTERVALDS {

  private byte[] intervalds;

  public INTERVALDS(byte[] intervalds) {
    this.intervalds = intervalds;
  }

  public byte[] toBytes() {
    return this.intervalds;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy