Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/SqoopUserGuide.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-frame.html URL: http://svn.apache.org/viewvc/incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-frame.html?rev=1245310&view=auto ============================================================================== --- incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-frame.html (added) +++ incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-frame.html Fri Feb 17 03:19:16 2012 @@ -0,0 +1,93 @@ + + + + + + +All Classes (Sqoop 1.4.1-incubating API) + + + + + + + + + + + +All Classes +
+ + + + + +
BigDecimalSerializer +
+BigDecimalSerializer +
+BlobRef +
+BlobRef +
+BooleanParser +
+BooleanParser +
+ClobRef +
+ClobRef +
+DelimiterSet +
+DelimiterSet +
+FieldFormatter +
+FieldFormatter +
+FieldMappable +
+FieldMappable +
+FieldMapProcessor +
+FieldMapProcessor +
+JdbcWritableBridge +
+JdbcWritableBridge +
+LargeObjectLoader +
+LargeObjectLoader +
+LobRef +
+LobRef +
+LobSerializer +
+LobSerializer +
+ProcessingException +
+ProcessingException +
+RecordParser +
+RecordParser +
+RecordParser.ParseError +
+RecordParser.ParseError +
+SqoopRecord +
+SqoopRecord +
+
+ + + Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-frame.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-noframe.html URL: http://svn.apache.org/viewvc/incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-noframe.html?rev=1245310&view=auto ============================================================================== --- incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-noframe.html (added) +++ incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-noframe.html Fri Feb 17 03:19:16 2012 @@ -0,0 +1,93 @@ + + + + + + +All Classes (Sqoop 1.4.1-incubating API) + + + + + + + + + + + +All Classes +
+ + + + + +
BigDecimalSerializer +
+BigDecimalSerializer +
+BlobRef +
+BlobRef +
+BooleanParser +
+BooleanParser +
+ClobRef +
+ClobRef +
+DelimiterSet +
+DelimiterSet +
+FieldFormatter +
+FieldFormatter +
+FieldMappable +
+FieldMappable +
+FieldMapProcessor +
+FieldMapProcessor +
+JdbcWritableBridge +
+JdbcWritableBridge +
+LargeObjectLoader +
+LargeObjectLoader +
+LobRef +
+LobRef +
+LobSerializer +
+LobSerializer +
+ProcessingException +
+ProcessingException +
+RecordParser +
+RecordParser +
+RecordParser.ParseError +
+RecordParser.ParseError +
+SqoopRecord +
+SqoopRecord +
+
+ + + Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/allclasses-noframe.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BigDecimalSerializer.html URL: http://svn.apache.org/viewvc/incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BigDecimalSerializer.html?rev=1245310&view=auto ============================================================================== --- incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BigDecimalSerializer.html (added) +++ incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BigDecimalSerializer.html Fri Feb 17 03:19:16 2012 @@ -0,0 +1,267 @@ + + + + + + +BigDecimalSerializer (Sqoop 1.4.1-incubating API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +com.cloudera.sqoop.lib +
+Class BigDecimalSerializer

+
+java.lang.Object
+  extended by com.cloudera.sqoop.lib.BigDecimalSerializer
+
+
+Deprecated. use org.apache.sqoop.lib.BigDecimalSerializer instead. +

+

+
public final class BigDecimalSerializer
extends java.lang.Object
+ + +

+Serialize BigDecimal classes to/from DataInput and DataOutput objects. + + BigDecimal is comprised of a BigInteger with an integer 'scale' field. + The BigDecimal/BigInteger can also return itself as a 'long' value. + + We serialize in one of two formats: + + First, check whether the BigInt can fit in a long: + boolean b = BigIntegerPart > LONG_MAX || BigIntegerPart < LONG_MIN + + [int: scale][boolean: b == false][long: BigInt-part] + [int: scale][boolean: b == true][string: BigInt-part.toString()] + + TODO(aaron): Get this to work with Hadoop's Serializations framework. +

+ +

+

+
See Also:
BigDecimalSerializer
+
+ +

+ + + + + + + + + + + + + + + + +
+Method Summary
+static java.math.BigDecimalreadFields(java.io.DataInput in) + +
+          Deprecated.  
+static voidwrite(java.math.BigDecimal d, + java.io.DataOutput out) + +
+          Deprecated.  
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+write

+
+public static void write(java.math.BigDecimal d,
+                         java.io.DataOutput out)
+                  throws java.io.IOException
+
+
Deprecated. 
+ +
Throws: +
java.io.IOException
+
+
+
+ +

+readFields

+
+public static java.math.BigDecimal readFields(java.io.DataInput in)
+                                       throws java.io.IOException
+
+
Deprecated. 
+ +
Throws: +
java.io.IOException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012 The Apache Software Foundation + + Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BigDecimalSerializer.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BlobRef.html URL: http://svn.apache.org/viewvc/incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BlobRef.html?rev=1245310&view=auto ============================================================================== --- incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BlobRef.html (added) +++ incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BlobRef.html Fri Feb 17 03:19:16 2012 @@ -0,0 +1,373 @@ + + + + + + +BlobRef (Sqoop 1.4.1-incubating API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +com.cloudera.sqoop.lib +
+Class BlobRef

+
+java.lang.Object
+  extended by org.apache.sqoop.lib.LobRef<DATATYPE,CONTAINERTYPE,ACCESSORTYPE>
+      extended by com.cloudera.sqoop.lib.LobRef<byte[],org.apache.hadoop.io.BytesWritable,java.io.InputStream>
+          extended by org.apache.sqoop.lib.BlobRef
+              extended by com.cloudera.sqoop.lib.BlobRef
+
+
+
All Implemented Interfaces:
java.io.Closeable, org.apache.hadoop.io.Writable
+
+
+Deprecated. use org.apache.sqoop.lib.BlobRef instead. +

+

+
public class BlobRef
extends BlobRef
+ + +

+BlobRef is a wrapper that holds a BLOB either directly, or a + reference to a file that holds the BLOB data. +

+ +

+

+
See Also:
BlobRef
+
+ +

+ + + + + + + + + + + +
+Field Summary
+static org.apache.commons.logging.LogLOG + +
+          Deprecated.  
+ + + + + + + +
Fields inherited from class com.cloudera.sqoop.lib.LobRef
EXTERNAL_MATCHER
+  + + + + + + + + + + + + + + + + +
+Constructor Summary
BlobRef() + +
+          Deprecated.  
BlobRef(byte[] bytes) + +
+          Deprecated.  
BlobRef(java.lang.String file, + long offset, + long length) + +
+          Deprecated. Initialize a BlobRef to an external BLOB.
+  + + + + + + + + + + + +
+Method Summary
+static BlobRefparse(java.lang.String inputString) + +
+          Deprecated. Create a BlobRef based on parsed data from a line of text.
+ + + + + + + +
Methods inherited from class org.apache.sqoop.lib.BlobRef
deepCopyData, getExternalSource, getInternalData, getInternalSource, readFieldsInternal, writeInternal
+ + + + + + + +
Methods inherited from class org.apache.sqoop.lib.LobRef
clone, close, finalize, getData, getDataObj, getDataStream, getDataStream, isExternal, readFields, setDataObj, toString, write
+ + + + + + + +
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+LOG

+
+public static final org.apache.commons.logging.Log LOG
+
+
Deprecated. 
+
+
+ + + + + + + + +
+Constructor Detail
+ +

+BlobRef

+
+public BlobRef()
+
+
Deprecated. 
+
+ +

+BlobRef

+
+public BlobRef(byte[] bytes)
+
+
Deprecated. 
+
+ +

+BlobRef

+
+public BlobRef(java.lang.String file,
+               long offset,
+               long length)
+
+
Deprecated. 
Initialize a BlobRef to an external BLOB. +

+

+
Parameters:
file - the filename to the BLOB. May be relative to the job dir.
offset - the offset (in bytes) into the LobFile for this record.
length - the length of the record in bytes.
+
+ + + + + + + + +
+Method Detail
+ +

+parse

+
+public static BlobRef parse(java.lang.String inputString)
+
+
Deprecated. 
Create a BlobRef based on parsed data from a line of text. + This only operates correctly on external blobs; inline blobs are simply + returned as null. You should store BLOB data in SequenceFile format + if reparsing is necessary. +

+

+
Parameters:
inputString - the text-based input data to parse. +
Returns:
a new BlobRef containing a reference to an external BLOB, or + an empty BlobRef if the data to be parsed is actually inline.
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012 The Apache Software Foundation + + Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BlobRef.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BooleanParser.html URL: http://svn.apache.org/viewvc/incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BooleanParser.html?rev=1245310&view=auto ============================================================================== --- incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BooleanParser.html (added) +++ incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BooleanParser.html Fri Feb 17 03:19:16 2012 @@ -0,0 +1,235 @@ + + + + + + +BooleanParser (Sqoop 1.4.1-incubating API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +com.cloudera.sqoop.lib +
+Class BooleanParser

+
+java.lang.Object
+  extended by com.cloudera.sqoop.lib.BooleanParser
+
+
+Deprecated. use org.apache.sqoop.lib.BooleanParser instead. +

+

+
public final class BooleanParser
extends java.lang.Object
+ + +

+Parse string representations of boolean values into boolean + scalar types. +

+ +

+

+
See Also:
BooleanParser
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+static booleanvalueOf(java.lang.String s) + +
+          Deprecated. Return a boolean based on the value contained in the string.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+valueOf

+
+public static boolean valueOf(java.lang.String s)
+
+
Deprecated. 
Return a boolean based on the value contained in the string. + +

The following values are considered true: + "true", "t", "yes", "on", "1".

+

All other values, including 'null', are false.

+

All comparisons are case-insensitive.

+

+

+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012 The Apache Software Foundation + + Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/BooleanParser.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/ClobRef.html URL: http://svn.apache.org/viewvc/incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/ClobRef.html?rev=1245310&view=auto ============================================================================== --- incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/ClobRef.html (added) +++ incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/ClobRef.html Fri Feb 17 03:19:16 2012 @@ -0,0 +1,342 @@ + + + + + + +ClobRef (Sqoop 1.4.1-incubating API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +com.cloudera.sqoop.lib +
+Class ClobRef

+
+java.lang.Object
+  extended by org.apache.sqoop.lib.LobRef<DATATYPE,CONTAINERTYPE,ACCESSORTYPE>
+      extended by com.cloudera.sqoop.lib.LobRef<java.lang.String,java.lang.String,java.io.Reader>
+          extended by org.apache.sqoop.lib.ClobRef
+              extended by com.cloudera.sqoop.lib.ClobRef
+
+
+
All Implemented Interfaces:
java.io.Closeable, org.apache.hadoop.io.Writable
+
+
+Deprecated. use org.apache.sqoop.lib.ClobRef instead. +

+

+
public class ClobRef
extends ClobRef
+ + +

+ClobRef is a wrapper that holds a CLOB either directly, or a + reference to a file that holds the CLOB data. +

+ +

+

+
See Also:
ClobRef
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from class com.cloudera.sqoop.lib.LobRef
EXTERNAL_MATCHER, LOG
+  + + + + + + + + + + + + + + + + +
+Constructor Summary
ClobRef() + +
+          Deprecated.  
ClobRef(java.lang.String chars) + +
+          Deprecated.  
ClobRef(java.lang.String file, + long offset, + long length) + +
+          Deprecated. Initialize a clobref to an external CLOB.
+  + + + + + + + + + + + +
+Method Summary
+static ClobRefparse(java.lang.String inputString) + +
+          Deprecated. Create a ClobRef based on parsed data from a line of text.
+ + + + + + + +
Methods inherited from class org.apache.sqoop.lib.ClobRef
deepCopyData, getExternalSource, getInternalData, getInternalSource, readFieldsInternal, writeInternal
+ + + + + + + +
Methods inherited from class org.apache.sqoop.lib.LobRef
clone, close, finalize, getData, getDataObj, getDataStream, getDataStream, isExternal, readFields, setDataObj, toString, write
+ + + + + + + +
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ClobRef

+
+public ClobRef()
+
+
Deprecated. 
+
+ +

+ClobRef

+
+public ClobRef(java.lang.String chars)
+
+
Deprecated. 
+
+ +

+ClobRef

+
+public ClobRef(java.lang.String file,
+               long offset,
+               long length)
+
+
Deprecated. 
Initialize a clobref to an external CLOB. +

+

+
Parameters:
file - the filename to the CLOB. May be relative to the job dir.
offset - the offset (in bytes) into the LobFile for this record.
length - the length of the record in characters.
+
+ + + + + + + + +
+Method Detail
+ +

+parse

+
+public static ClobRef parse(java.lang.String inputString)
+
+
Deprecated. 
Create a ClobRef based on parsed data from a line of text. +

+

+
Parameters:
inputString - the text-based input data to parse. +
Returns:
a ClobRef to the given data.
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012 The Apache Software Foundation + + Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.1-incubating/api/com/cloudera/sqoop/lib/ClobRef.html ------------------------------------------------------------------------------ svn:eol-style = native