/projects/derby-10.9.1.0/db-derby-10.9.1.0-src/java/stubs/jdbc4/java/sql/SQLOutput.java

https://gitlab.com/essere.lab.public/qualitas.class-corpus · Java · 49 lines · 31 code · 2 blank · 16 comment · 0 complexity · 1d28b2f3fe419d8b508212a9b00e430c MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package java.sql;
  18. public interface SQLOutput
  19. {
  20. public void writeArray(Array x) throws SQLException;
  21. public void writeAsciiStream(java.io.InputStream x) throws SQLException;
  22. public void writeBigDecimal(java.math.BigDecimal x) throws SQLException;
  23. public void writeBinaryStream(java.io.InputStream x) throws SQLException;
  24. public void writeBlob(Blob x) throws SQLException;
  25. public void writeBoolean(boolean x) throws SQLException;
  26. public void writeByte(byte x) throws SQLException;
  27. public void writeBytes(byte[] x) throws SQLException;
  28. public void writeCharacterStream(java.io.Reader x) throws SQLException;
  29. public void writeClob(Clob x) throws SQLException;
  30. public void writeDate(Date x) throws SQLException;
  31. public void writeDouble(double x) throws SQLException;
  32. public void writeFloat(float x) throws SQLException;
  33. public void writeInt(int x) throws SQLException;
  34. public void writeLong(long x) throws SQLException;
  35. public void writeNClob(NClob x) throws SQLException;
  36. public void writeNString(String x) throws SQLException;
  37. public void writeObject(SQLData x) throws SQLException;
  38. public void writeRef(Ref x) throws SQLException;
  39. public void writeRowId(RowId x) throws SQLException;
  40. public void writeShort(short x) throws SQLException;
  41. public void writeSQLXML(SQLXML x) throws SQLException;
  42. public void writeString(String x) throws SQLException;
  43. public void writeStruct(Struct x) throws SQLException;
  44. public void writeTime(Time x) throws SQLException;
  45. public void writeTimestamp(Timestamp x) throws SQLException;
  46. public void writeURL(java.net.URL x) throws SQLException;
  47. }