Uses of Class
com.google.cloud.bigquery.LegacySQLTypeName
-
Packages that use LegacySQLTypeName Package Description com.google.cloud.bigquery A client for BigQuery – A fully managed, petabyte scale, low cost enterprise data warehouse for analytics. -
-
Uses of LegacySQLTypeName in com.google.cloud.bigquery
Fields in com.google.cloud.bigquery declared as LegacySQLTypeName Modifier and Type Field Description static LegacySQLTypeNameLegacySQLTypeName. BIGNUMERICA decimal value with 76+ digits of precision (the 77th digit is partial) and 38 digits of scalestatic LegacySQLTypeNameLegacySQLTypeName. BOOLEANA Boolean value (true or false).static LegacySQLTypeNameLegacySQLTypeName. BYTESVariable-length binary data.static LegacySQLTypeNameLegacySQLTypeName. DATERepresents a logical calendar date.static LegacySQLTypeNameLegacySQLTypeName. DATETIMERepresents a year, month, day, hour, minute, second, and subsecond (microsecond precision).static LegacySQLTypeNameLegacySQLTypeName. FLOATA 64-bit IEEE binary floating-point value.static LegacySQLTypeNameLegacySQLTypeName. GEOGRAPHYRepresents a set of geographic points, represented as a Well Known Text (WKT) string.static LegacySQLTypeNameLegacySQLTypeName. INTEGERA 64-bit signed integer value.static LegacySQLTypeNameLegacySQLTypeName. INTERVALRepresents duration or amount of time.static LegacySQLTypeNameLegacySQLTypeName. JSONRepresents JSON datastatic LegacySQLTypeNameLegacySQLTypeName. NUMERICA decimal value with 38 digits of precision and 9 digits of scale.static LegacySQLTypeNameLegacySQLTypeName. RECORDA record type with a nested schema.static LegacySQLTypeNameLegacySQLTypeName. STRINGVariable-length character (Unicode) data.static LegacySQLTypeNameLegacySQLTypeName. TIMERepresents a time, independent of a specific date, to microsecond precision.static LegacySQLTypeNameLegacySQLTypeName. TIMESTAMPRepresents an absolute point in time, with microsecond precision.Methods in com.google.cloud.bigquery that return LegacySQLTypeName Modifier and Type Method Description LegacySQLTypeNameField. getType()Returns the field type.static LegacySQLTypeNameLegacySQLTypeName. legacySQLTypeName(StandardSQLTypeName type)Converts StandardSQLTypeName to LegacySQLTypeNamestatic LegacySQLTypeNameLegacySQLTypeName. valueOf(String constant)Get the LegacySQLTypeName for the given String constant, and allow unrecognized values.static LegacySQLTypeNameLegacySQLTypeName. valueOfStrict(String constant)Get the LegacySQLTypeName for the given String constant, and throw an exception if the constant is not recognized.static LegacySQLTypeName[]LegacySQLTypeName. values()Return the known values for LegacySQLTypeName.Methods in com.google.cloud.bigquery with parameters of type LegacySQLTypeName Modifier and Type Method Description static Field.BuilderField. newBuilder(String name, LegacySQLTypeName type, Field... subFields)Returns a builder for a Field object with given name and type.static Field.BuilderField. newBuilder(String name, LegacySQLTypeName type, FieldList subFields)Returns a builder for a Field object with given name and type.static FieldField. of(String name, LegacySQLTypeName type, Field... subFields)Returns a Field object with given name and type.static FieldField. of(String name, LegacySQLTypeName type, FieldList subFields)Returns a Field object with given name and type.Field.BuilderField.Builder. setType(LegacySQLTypeName type, Field... subFields)Sets the type of the field.Field.BuilderField.Builder. setType(LegacySQLTypeName type, FieldList subFields)Sets the type of the field.
-