Added: sqoop/site/trunk/content/resources/docs/1.4.3/api/org/apache/sqoop/lib/LobSerializer.html URL: http://svn.apache.org/viewvc/sqoop/site/trunk/content/resources/docs/1.4.3/api/org/apache/sqoop/lib/LobSerializer.html?rev=1453973&view=auto ============================================================================== --- sqoop/site/trunk/content/resources/docs/1.4.3/api/org/apache/sqoop/lib/LobSerializer.html (added) +++ sqoop/site/trunk/content/resources/docs/1.4.3/api/org/apache/sqoop/lib/LobSerializer.html Thu Mar 7 17:26:54 2013 @@ -0,0 +1,296 @@ + + + +
+ +
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+java.lang.Object ++org.apache.sqoop.lib.LobSerializer +
public final class LobSerializer
+Serialize LOB classes to/from DataInput and DataOutput objects. +
+ +
+
+Method Summary | +|
---|---|
+static BlobRef |
+readBlobFields(java.io.DataInput in)
+
++ |
+
+static ClobRef |
+readClobFields(java.io.DataInput in)
+
++ |
+
+static void |
+writeBlob(BlobRef blob,
+ java.io.DataOutput out)
+
++ |
+
+static void |
+writeClob(ClobRef clob,
+ java.io.DataOutput out)
+
++ |
+
Methods inherited from class java.lang.Object | +
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
+
+Method Detail | +
---|
+public static void writeClob(ClobRef clob, + java.io.DataOutput out) + throws java.io.IOException+
java.io.IOException
+public static void writeBlob(BlobRef blob, + java.io.DataOutput out) + throws java.io.IOException+
java.io.IOException
+public static ClobRef readClobFields(java.io.DataInput in) + throws java.io.IOException+
java.io.IOException
+public static BlobRef readBlobFields(java.io.DataInput in) + throws java.io.IOException+
java.io.IOException
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+java.lang.Object ++java.lang.Throwable +
java.lang.Exception +
org.apache.sqoop.lib.ProcessingException +
public class ProcessingException
+General error during processing of a SqoopRecord. +
+ +
+
+Constructor Summary | +|
---|---|
ProcessingException()
+
++ |
+|
ProcessingException(java.lang.String message)
+
++ |
+|
ProcessingException(java.lang.String message,
+ java.lang.Throwable cause)
+
++ |
+|
ProcessingException(java.lang.Throwable cause)
+
++ |
+
+Method Summary | +|
---|---|
+ java.lang.String |
+toString()
+
++ |
+
Methods inherited from class java.lang.Throwable | +
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace |
+
Methods inherited from class java.lang.Object | +
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
+
+Constructor Detail | +
---|
+public ProcessingException()+
+public ProcessingException(java.lang.String message)+
+public ProcessingException(java.lang.Throwable cause)+
+public ProcessingException(java.lang.String message, + java.lang.Throwable cause)+
+Method Detail | +
---|
+public java.lang.String toString()+
toString
in class java.lang.Throwable
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+java.lang.Object ++java.lang.Throwable +
java.lang.Exception +
org.apache.sqoop.lib.RecordParser.ParseError +
public static class RecordParser.ParseError
+An error thrown when parsing fails. +
+ +
+
+Constructor Summary | +|
---|---|
RecordParser.ParseError()
+
++ |
+|
RecordParser.ParseError(java.lang.String msg)
+
++ |
+|
RecordParser.ParseError(java.lang.String msg,
+ java.lang.Throwable cause)
+
++ |
+|
RecordParser.ParseError(java.lang.Throwable cause)
+
++ |
+
+Method Summary | +
---|
Methods inherited from class java.lang.Throwable | +
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
+
Methods inherited from class java.lang.Object | +
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
+
+Constructor Detail | +
---|
+public RecordParser.ParseError()+
+public RecordParser.ParseError(java.lang.String msg)+
+public RecordParser.ParseError(java.lang.String msg, + java.lang.Throwable cause)+
+public RecordParser.ParseError(java.lang.Throwable cause)+
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+java.lang.Object ++org.apache.sqoop.lib.RecordParser +
public class RecordParser
+Parses a record containing one or more fields. Fields are separated + by some FIELD_DELIMITER character, e.g. a comma or a ^A character. + Records are terminated by a RECORD_DELIMITER character, e.g., a newline. + + Fields may be (optionally or mandatorily) enclosed by a quoting char + e.g., '\"' + + Fields may contain escaped characters. An escape character may be, e.g., + the '\\' character. Any character following an escape character + is treated literally. e.g., '\n' is recorded as an 'n' character, not a + newline. + + Unexpected results may occur if the enclosing character escapes itself. + e.g., this cannot parse SQL SELECT statements where the single character + ['] escapes to ['']. + + This class is not synchronized. Multiple threads must use separate + instances of RecordParser. + + The fields parsed by RecordParser are backed by an internal buffer + which is cleared when the next call to parseRecord() is made. If + the buffer is required to be preserved, you must copy it yourself. +
+ +
+
+Nested Class Summary | +|
---|---|
+static class |
+RecordParser.ParseError
+
++ An error thrown when parsing fails. |
+
+Field Summary | +|
---|---|
+static org.apache.commons.logging.Log |
+LOG
+
++ |
+
+Constructor Summary | +|
---|---|
RecordParser(DelimiterSet delimitersIn)
+
++ |
+
+Method Summary | +|
---|---|
+ int |
+hashCode()
+
++ |
+
+ boolean |
+isEnclosingRequired()
+
++ |
+
+ java.util.List<java.lang.String> |
+parseRecord(byte[] input)
+
++ Return a list of strings representing the fields of the input line. |
+
+ java.util.List<java.lang.String> |
+parseRecord(java.nio.ByteBuffer input)
+
++ |
+
+ java.util.List<java.lang.String> |
+parseRecord(char[] input)
+
++ Return a list of strings representing the fields of the input line. |
+
+ java.util.List<java.lang.String> |
+parseRecord(java.nio.CharBuffer input)
+
++ Return a list of strings representing the fields of the input line. |
+
+ java.util.List<java.lang.String> |
+parseRecord(java.lang.CharSequence input)
+
++ Return a list of strings representing the fields of the input line. |
+
+ java.util.List<java.lang.String> |
+parseRecord(org.apache.hadoop.io.Text input)
+
++ Return a list of strings representing the fields of the input line. |
+
+ java.lang.String |
+toString()
+
++ |
+
Methods inherited from class java.lang.Object | +
---|
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait |
+
+Field Detail | +
---|
+public static final org.apache.commons.logging.Log LOG+
+Constructor Detail | +
---|
+public RecordParser(DelimiterSet delimitersIn)+
+Method Detail | +
---|
+public java.util.List<java.lang.String> parseRecord(java.lang.CharSequence input) + throws RecordParser.ParseError+
+
RecordParser.ParseError
+public java.util.List<java.lang.String> parseRecord(org.apache.hadoop.io.Text input) + throws RecordParser.ParseError+
+
RecordParser.ParseError
+public java.util.List<java.lang.String> parseRecord(byte[] input) + throws RecordParser.ParseError+
+
RecordParser.ParseError
+public java.util.List<java.lang.String> parseRecord(char[] input) + throws RecordParser.ParseError+
+
RecordParser.ParseError
+public java.util.List<java.lang.String> parseRecord(java.nio.ByteBuffer input) + throws RecordParser.ParseError+
RecordParser.ParseError
+public java.util.List<java.lang.String> parseRecord(java.nio.CharBuffer input) + throws RecordParser.ParseError+
+
RecordParser.ParseError
+public boolean isEnclosingRequired()+
+public java.lang.String toString()+
toString
in class java.lang.Object
+public int hashCode()+
hashCode
in class java.lang.Object
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +