public static enum SqlType.Code extends Enum<SqlType.Code>
| Enum Constant and Description |
|---|
ARRAY |
BOOL |
BYTES |
DATE |
ENUM |
FLOAT32 |
FLOAT64 |
INT64 |
MAP |
PROTO |
STRING |
STRUCT |
TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
static SqlType.Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlType.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlType.Code BYTES
public static final SqlType.Code STRING
public static final SqlType.Code INT64
public static final SqlType.Code FLOAT64
public static final SqlType.Code FLOAT32
public static final SqlType.Code BOOL
public static final SqlType.Code TIMESTAMP
public static final SqlType.Code DATE
public static final SqlType.Code STRUCT
public static final SqlType.Code ARRAY
public static final SqlType.Code MAP
public static final SqlType.Code PROTO
public static final SqlType.Code ENUM
public static SqlType.Code[] values()
for (SqlType.Code c : SqlType.Code.values()) System.out.println(c);
public static SqlType.Code valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2026 Google LLC. All rights reserved.