Interface SqlType.Enum<T> (2.66.0)

public static interface SqlType.Enum<T> extends SqlType<T>

Represents a protobuf enum type in SQL.

Implements

com.google.cloud.bigtable.data.v2.models.sql.SqlType<T>

Type Parameter

Name Description
T

Methods

getEnumName()

public abstract String getEnumName()
Returns
Type Description
String

getForNumber()

public abstract Function<Integer,T> getForNumber()
Returns
Type Description
Function<java.lang.Integer,T>

the function to convert an integer to the enum value.