public interface TranslationReportRecordOrBuilder extends MessageOrBuilderImplements
MessageOrBuilderMethods
getCategory()
public abstract String getCategory()Category of the error/warning. Example: SyntaxError
string category = 4;
| Returns | |
|---|---|
| Type | Description |
String |
The category. |
getCategoryBytes()
public abstract ByteString getCategoryBytes()Category of the error/warning. Example: SyntaxError
string category = 4;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for category. |
getMessage()
public abstract String getMessage()Detailed message of the record.
string message = 5;
| Returns | |
|---|---|
| Type | Description |
String |
The message. |
getMessageBytes()
public abstract ByteString getMessageBytes()Detailed message of the record.
string message = 5;
| Returns | |
|---|---|
| Type | Description |
ByteString |
The bytes for message. |
getScriptColumn()
public abstract int getScriptColumn()Specifies the column from the source texts where the error occurred. (0 based) example: 6
int32 script_column = 3;
| Returns | |
|---|---|
| Type | Description |
int |
The scriptColumn. |
getScriptLine()
public abstract int getScriptLine()Specifies the row from the source text where the error occurred (0 based). Example: 2
int32 script_line = 2;
| Returns | |
|---|---|
| Type | Description |
int |
The scriptLine. |
getSeverity()
public abstract TranslationReportRecord.Severity getSeverity()Severity of the translation record.
.google.cloud.bigquery.migration.v2.TranslationReportRecord.Severity severity = 1;
| Returns | |
|---|---|
| Type | Description |
TranslationReportRecord.Severity |
The severity. |
getSeverityValue()
public abstract int getSeverityValue()Severity of the translation record.
.google.cloud.bigquery.migration.v2.TranslationReportRecord.Severity severity = 1;
| Returns | |
|---|---|
| Type | Description |
int |
The enum numeric value on the wire for severity. |