Propchange: incubator/sqoop/site/src/site/resources/docs/1.4.0-incubating/SqoopUserGuide.html ------------------------------------------------------------------------------ svn:eol-style = native Added: incubator/sqoop/site/src/site/resources/docs/1.4.0-incubating/api/allclasses-frame.html URL: http://svn.apache.org/viewvc/incubator/sqoop/site/src/site/resources/docs/1.4.0-incubating/api/allclasses-frame.html?rev=1211189&view=auto ============================================================================== --- incubator/sqoop/site/src/site/resources/docs/1.4.0-incubating/api/allclasses-frame.html (added) +++ incubator/sqoop/site/src/site/resources/docs/1.4.0-incubating/api/allclasses-frame.html Tue Dec 6 21:53:27 2011 @@ -0,0 +1,93 @@ + + + +
+ +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 + + |
+
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 + + |
+
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +
+java.lang.Object ++com.cloudera.sqoop.lib.BigDecimalSerializer +
+
public final class BigDecimalSerializer
+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. +
+ +
+
BigDecimalSerializer
+Method Summary | +|
---|---|
+static java.math.BigDecimal |
+readFields(java.io.DataInput in)
+
++ Deprecated. |
+
+static void |
+write(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 | +
---|
+public static void write(java.math.BigDecimal d, + java.io.DataOutput out) + throws java.io.IOException+
java.io.IOException
+public static java.math.BigDecimal readFields(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 ++org.apache.sqoop.lib.LobRef<DATATYPE,CONTAINERTYPE,ACCESSORTYPE> +
com.cloudera.sqoop.lib.LobRef<byte[],org.apache.hadoop.io.BytesWritable,java.io.InputStream> +
org.apache.sqoop.lib.BlobRef +
com.cloudera.sqoop.lib.BlobRef +
+
public class BlobRef
+BlobRef is a wrapper that holds a BLOB either directly, or a + reference to a file that holds the BLOB data. +
+ +
+
BlobRef
+Field Summary | +|
---|---|
+static org.apache.commons.logging.Log |
+LOG
+
++ 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 BlobRef |
+parse(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 | +
---|
+public static final org.apache.commons.logging.Log LOG+
+Constructor Detail | +
---|
+public BlobRef()+
+public BlobRef(byte[] bytes)+
+public BlobRef(java.lang.String file, + long offset, + long length)+
+
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 | +
---|
+public static BlobRef parse(java.lang.String inputString)+
+
inputString
- the text-based input data to parse.
+
+
+
|
++ + | +|||||||||
+ 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 ++com.cloudera.sqoop.lib.BooleanParser +
+
public final class BooleanParser
+Parse string representations of boolean values into boolean + scalar types. +
+ +
+
BooleanParser
+Method Summary | +|
---|---|
+static boolean |
+valueOf(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 | +
---|
+public static boolean valueOf(java.lang.String s)+
The following values are considered true: + "true", "t", "yes", "on", "1".
+All other values, including 'null', are false.
+All comparisons are case-insensitive.
++
+
+
|
++ + | +|||||||||
+ 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.LobRef<DATATYPE,CONTAINERTYPE,ACCESSORTYPE> +
com.cloudera.sqoop.lib.LobRef<java.lang.String,java.lang.String,java.io.Reader> +
org.apache.sqoop.lib.ClobRef +
com.cloudera.sqoop.lib.ClobRef +
+
public class ClobRef
+ClobRef is a wrapper that holds a CLOB either directly, or a + reference to a file that holds the CLOB data. +
+ +
+
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 ClobRef |
+parse(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 | +
---|
+public ClobRef()+
+public ClobRef(java.lang.String chars)+
+public ClobRef(java.lang.String file, + long offset, + long length)+
+
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 | +
---|
+public static ClobRef parse(java.lang.String inputString)+
+
inputString
- the text-based input data to parse.
+
+
+
|
++ + | +|||||||||
+ PREV CLASS + NEXT CLASS | ++ FRAMES + NO FRAMES + + + + + | +|||||||||
+ SUMMARY: NESTED | FIELD | CONSTR | METHOD | ++DETAIL: FIELD | CONSTR | METHOD | +