Interface SqlTranslationErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SqlTranslationError
,SqlTranslationError.Builder
public interface SqlTranslationErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlTranslationErrorDetail
getErrorDetail()
Specifies the details of the error, including the error message and location from the source text.SqlTranslationErrorDetailOrBuilder
getErrorDetailOrBuilder()
Specifies the details of the error, including the error message and location from the source text.SqlTranslationError.SqlTranslationErrorType
getErrorType()
The type of SQL translation error.int
getErrorTypeValue()
The type of SQL translation error.boolean
hasErrorDetail()
Specifies the details of the error, including the error message and location from the source text.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getErrorTypeValue
int getErrorTypeValue()
The type of SQL translation error.
.google.cloud.bigquery.migration.v2alpha.SqlTranslationError.SqlTranslationErrorType error_type = 1;
- Returns:
- The enum numeric value on the wire for errorType.
-
getErrorType
SqlTranslationError.SqlTranslationErrorType getErrorType()
The type of SQL translation error.
.google.cloud.bigquery.migration.v2alpha.SqlTranslationError.SqlTranslationErrorType error_type = 1;
- Returns:
- The errorType.
-
hasErrorDetail
boolean hasErrorDetail()
Specifies the details of the error, including the error message and location from the source text.
.google.cloud.bigquery.migration.v2alpha.SqlTranslationErrorDetail error_detail = 2;
- Returns:
- Whether the errorDetail field is set.
-
getErrorDetail
SqlTranslationErrorDetail getErrorDetail()
Specifies the details of the error, including the error message and location from the source text.
.google.cloud.bigquery.migration.v2alpha.SqlTranslationErrorDetail error_detail = 2;
- Returns:
- The errorDetail.
-
getErrorDetailOrBuilder
SqlTranslationErrorDetailOrBuilder getErrorDetailOrBuilder()
Specifies the details of the error, including the error message and location from the source text.
.google.cloud.bigquery.migration.v2alpha.SqlTranslationErrorDetail error_detail = 2;
-
-