Interface SqlType.Array<Elem> (2.44.0)

public static interface SqlType.Array<Elem> extends SqlType<List<Elem>>

Represents an array type in SQL. Provides access to the element type of the array.

Implements

com.google.cloud.bigtable.data.v2.models.sql.SqlType<java.util.List<Elem>>

Type Parameter

Name Description
Elem

Methods

getElementType()

public abstract SqlType<Elem> getElementType()
Returns
Type Description
SqlType<Elem>

SqlType of the array's elements