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;
}
}