Package liquibase.change
Class AbstractSQLChange.NormalizingStream
- java.lang.Object
-
- java.io.InputStream
-
- liquibase.change.AbstractSQLChange.NormalizingStream
-
- All Implemented Interfaces:
Closeable,AutoCloseable
- Enclosing class:
- AbstractSQLChange
public static class AbstractSQLChange.NormalizingStream extends InputStream
-
-
Constructor Summary
Constructors Constructor Description NormalizingStream(InputStream stream)NormalizingStream(String endDelimiter, Boolean splitStatements, Boolean stripComments, InputStream stream)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()voidclose()voidmark(int readLimit)booleanmarkSupported()intread()voidreset()-
Methods inherited from class java.io.InputStream
read, read, skip
-
-
-
-
Constructor Detail
-
NormalizingStream
@Deprecated public NormalizingStream(String endDelimiter, Boolean splitStatements, Boolean stripComments, InputStream stream)
Deprecated.
-
NormalizingStream
public NormalizingStream(InputStream stream)
-
-
Method Detail
-
read
public int read() throws IOException- Specified by:
readin classInputStream- Throws:
IOException
-
available
public int available() throws IOException- Overrides:
availablein classInputStream- Throws:
IOException
-
markSupported
public boolean markSupported()
- Overrides:
markSupportedin classInputStream
-
mark
public void mark(int readLimit)
- Overrides:
markin classInputStream
-
reset
public void reset() throws IOException- Overrides:
resetin classInputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInputStream- Throws:
IOException
-
-