Interface SqlType.Map<K,V> (2.43.0)

public static interface SqlType.Map<K,V> extends SqlType<Map<K,V>>

Represents a map type in SQL. Provides access to the key and value types for the map.

Implements

com.google.cloud.bigtable.data.v2.models.sql.SqlType<java.util.Map<K,V>>

Type Parameters

Name Description
K
V

Methods

getKeyType()

public abstract SqlType<K> getKeyType()
Returns
Type Description
SqlType<K>

SqlType of the map's key

getValueType()

public abstract SqlType<V> getValueType()
Returns
Type Description
SqlType<V>

SqlType of the map's value