Package com.google.cloud.datastream.v1
Interface ValidationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Validation
,Validation.Builder
public interface ValidationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCode()
A custom code identifying this validation.com.google.protobuf.ByteString
getCodeBytes()
A custom code identifying this validation.String
getDescription()
A short description of the validation.com.google.protobuf.ByteString
getDescriptionBytes()
A short description of the validation.ValidationMessage
getMessage(int index)
Messages reflecting the validation results.int
getMessageCount()
Messages reflecting the validation results.List<ValidationMessage>
getMessageList()
Messages reflecting the validation results.ValidationMessageOrBuilder
getMessageOrBuilder(int index)
Messages reflecting the validation results.List<? extends ValidationMessageOrBuilder>
getMessageOrBuilderList()
Messages reflecting the validation results.Validation.State
getState()
Validation execution status.int
getStateValue()
Validation execution status.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDescription
String getDescription()
A short description of the validation.
string description = 1;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
A short description of the validation.
string description = 1;
- Returns:
- The bytes for description.
-
getStateValue
int getStateValue()
Validation execution status.
.google.cloud.datastream.v1.Validation.State state = 2;
- Returns:
- The enum numeric value on the wire for state.
-
getState
Validation.State getState()
Validation execution status.
.google.cloud.datastream.v1.Validation.State state = 2;
- Returns:
- The state.
-
getMessageList
List<ValidationMessage> getMessageList()
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1.ValidationMessage message = 3;
-
getMessage
ValidationMessage getMessage(int index)
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1.ValidationMessage message = 3;
-
getMessageCount
int getMessageCount()
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1.ValidationMessage message = 3;
-
getMessageOrBuilderList
List<? extends ValidationMessageOrBuilder> getMessageOrBuilderList()
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1.ValidationMessage message = 3;
-
getMessageOrBuilder
ValidationMessageOrBuilder getMessageOrBuilder(int index)
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1.ValidationMessage message = 3;
-
getCode
String getCode()
A custom code identifying this validation.
string code = 4;
- Returns:
- The code.
-
getCodeBytes
com.google.protobuf.ByteString getCodeBytes()
A custom code identifying this validation.
string code = 4;
- Returns:
- The bytes for code.
-
-