See: Description
| Interface | Description |
|---|---|
| UDF1<T1,R> |
A Spark SQL UDF that has 1 arguments.
|
| UDF10<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,R> |
A Spark SQL UDF that has 10 arguments.
|
| UDF11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,R> |
A Spark SQL UDF that has 11 arguments.
|
| UDF12<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,R> |
A Spark SQL UDF that has 12 arguments.
|
| UDF13<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,R> |
A Spark SQL UDF that has 13 arguments.
|
| UDF14<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,R> |
A Spark SQL UDF that has 14 arguments.
|
| UDF15<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,R> |
A Spark SQL UDF that has 15 arguments.
|
| UDF16<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,R> |
A Spark SQL UDF that has 16 arguments.
|
| UDF17<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,R> |
A Spark SQL UDF that has 17 arguments.
|
| UDF18<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,R> |
A Spark SQL UDF that has 18 arguments.
|
| UDF19<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,R> |
A Spark SQL UDF that has 19 arguments.
|
| UDF2<T1,T2,R> |
A Spark SQL UDF that has 2 arguments.
|
| UDF20<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,R> |
A Spark SQL UDF that has 20 arguments.
|
| UDF21<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,R> |
A Spark SQL UDF that has 21 arguments.
|
| UDF22<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11,T12,T13,T14,T15,T16,T17,T18,T19,T20,T21,T22,R> |
A Spark SQL UDF that has 22 arguments.
|
| UDF3<T1,T2,T3,R> |
A Spark SQL UDF that has 3 arguments.
|
| UDF4<T1,T2,T3,T4,R> |
A Spark SQL UDF that has 4 arguments.
|
| UDF5<T1,T2,T3,T4,T5,R> |
A Spark SQL UDF that has 5 arguments.
|
| UDF6<T1,T2,T3,T4,T5,T6,R> |
A Spark SQL UDF that has 6 arguments.
|
| UDF7<T1,T2,T3,T4,T5,T6,T7,R> |
A Spark SQL UDF that has 7 arguments.
|
| UDF8<T1,T2,T3,T4,T5,T6,T7,T8,R> |
A Spark SQL UDF that has 8 arguments.
|
| UDF9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R> |
A Spark SQL UDF that has 9 arguments.
|
| Class | Description |
|---|---|
| ArrayType |
The data type representing Lists.
|
| BinaryType |
The data type representing byte[] values.
|
| BooleanType |
The data type representing boolean and Boolean values.
|
| ByteType |
The data type representing byte and Byte values.
|
| DataType |
The base type of all Spark SQL data types.
|
| DecimalType |
The data type representing java.math.BigDecimal values.
|
| DoubleType |
The data type representing double and Double values.
|
| FloatType |
The data type representing float and Float values.
|
| IntegerType |
The data type representing int and Integer values.
|
| JavaSchemaRDD |
An RDD of
Row objects that is returned as the result of a Spark SQL query. |
| JavaSQLContext |
The entry point for executing Spark SQL queries from a Java program.
|
| LongType |
The data type representing long and Long values.
|
| MapType |
The data type representing Maps.
|
| Row |
A result row from a SparkSQL query.
|
| ShortType |
The data type representing short and Short values.
|
| StringType |
The data type representing String values.
|
| StructField |
A StructField object represents a field in a StructType object.
|
| StructType |
The data type representing Rows.
|
| TimestampType |
The data type representing java.sql.Timestamp values.
|