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

oracle.sql.TIMESTAMPTZ Maven / Gradle / Ivy

The newest version!
package oracle.sql;


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

  private byte[] timestamptz;

  public TIMESTAMPTZ(byte[] timestamptz) {
    this.timestamptz = timestamptz;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy