Interface ValidationMessageOrBuilder (1.40.0)

public interface ValidationMessageOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

containsMetadata(String key)

public abstract boolean containsMetadata(String key)

Additional metadata related to the result.

map<string, string> metadata = 3;

Parameter
NameDescription
keyString
Returns
TypeDescription
boolean

getCode()

public abstract String getCode()

A custom code identifying this specific message.

string code = 4;

Returns
TypeDescription
String

The code.

getCodeBytes()

public abstract ByteString getCodeBytes()

A custom code identifying this specific message.

string code = 4;

Returns
TypeDescription
ByteString

The bytes for code.

getLevel()

public abstract ValidationMessage.Level getLevel()

Message severity level (warning or error).

.google.cloud.datastream.v1alpha1.ValidationMessage.Level level = 2;

Returns
TypeDescription
ValidationMessage.Level

The level.

getLevelValue()

public abstract int getLevelValue()

Message severity level (warning or error).

.google.cloud.datastream.v1alpha1.ValidationMessage.Level level = 2;

Returns
TypeDescription
int

The enum numeric value on the wire for level.

getMessage()

public abstract String getMessage()

The result of the validation.

string message = 1;

Returns
TypeDescription
String

The message.

getMessageBytes()

public abstract ByteString getMessageBytes()

The result of the validation.

string message = 1;

Returns
TypeDescription
ByteString

The bytes for message.

getMetadata() (deprecated)

public abstract Map<String,String> getMetadata()

Use #getMetadataMap() instead.

Returns
TypeDescription
Map<String,String>

getMetadataCount()

public abstract int getMetadataCount()

Additional metadata related to the result.

map<string, string> metadata = 3;

Returns
TypeDescription
int

getMetadataMap()

public abstract Map<String,String> getMetadataMap()

Additional metadata related to the result.

map<string, string> metadata = 3;

Returns
TypeDescription
Map<String,String>

getMetadataOrDefault(String key, String defaultValue)

public abstract String getMetadataOrDefault(String key, String defaultValue)

Additional metadata related to the result.

map<string, string> metadata = 3;

Parameters
NameDescription
keyString
defaultValueString
Returns
TypeDescription
String

getMetadataOrThrow(String key)

public abstract String getMetadataOrThrow(String key)

Additional metadata related to the result.

map<string, string> metadata = 3;

Parameter
NameDescription
keyString
Returns
TypeDescription
String