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.Status
getStatus()
Validation execution status.int
getStatusValue()
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.
-
getStatusValue
int getStatusValue()
Validation execution status.
.google.cloud.datastream.v1alpha1.Validation.Status status = 2;
- Returns:
- The enum numeric value on the wire for status.
-
getStatus
Validation.Status getStatus()
Validation execution status.
.google.cloud.datastream.v1alpha1.Validation.Status status = 2;
- Returns:
- The status.
-
getMessageList
List<ValidationMessage> getMessageList()
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1alpha1.ValidationMessage message = 3;
-
getMessage
ValidationMessage getMessage(int index)
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1alpha1.ValidationMessage message = 3;
-
getMessageCount
int getMessageCount()
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1alpha1.ValidationMessage message = 3;
-
getMessageOrBuilderList
List<? extends ValidationMessageOrBuilder> getMessageOrBuilderList()
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1alpha1.ValidationMessage message = 3;
-
getMessageOrBuilder
ValidationMessageOrBuilder getMessageOrBuilder(int index)
Messages reflecting the validation results.
repeated .google.cloud.datastream.v1alpha1.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.
-
-