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

https://gitlab.com/essere.lab.public/qualitas.class-corpus · Java · 49 lines · 31 code · 2 blank · 16 comment · 0 complexity · a91e88d12345103128a0978c4196ddfc 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 SQLInput
  19. {
  20. public Array readArray() throws SQLException;
  21. public java.io.InputStream readAsciiStream() throws SQLException;
  22. public java.math.BigDecimal readBigDecimal() throws SQLException;
  23. public java.io.InputStream readBinaryStream() throws SQLException;
  24. public Blob readBlob() throws SQLException;
  25. public boolean readBoolean() throws SQLException;
  26. public byte readByte() throws SQLException;
  27. public byte[] readBytes() throws SQLException;
  28. public java.io.Reader readCharacterStream() throws SQLException;
  29. public Clob readClob() throws SQLException;
  30. public Date readDate() throws SQLException;
  31. public double readDouble() throws SQLException;
  32. public float readFloat() throws SQLException;
  33. public int readInt() throws SQLException;
  34. public long readLong() throws SQLException;
  35. public NClob readNClob() throws SQLException;
  36. public String readNString() throws SQLException;
  37. public Object readObject() throws SQLException;
  38. public Ref readRef() throws SQLException;
  39. public RowId readRowId() throws SQLException;
  40. public short readShort() throws SQLException;
  41. public SQLXML readSQLXML() throws SQLException;
  42. public String readString() throws SQLException;
  43. public Time readTime() throws SQLException;
  44. public Timestamp readTimestamp() throws SQLException;
  45. public java.net.URL readURL() throws SQLException;
  46. public boolean wasNull() throws SQLException;
  47. }