All Downloads are FREE. Search and download functionalities are using the official Maven repository.

build.buf.validate.Violation Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: buf/validate/validate.proto
// Protobuf Java Version: 4.28.1

package build.buf.validate;

/**
 * 
 * `Violation` represents a single instance where a validation rule, expressed
 * as a `Constraint`, was not met. It provides information about the field that
 * caused the violation, the specific constraint that wasn't fulfilled, and a
 * human-readable error message.
 *
 * ```json
 * {
 * "fieldPath": "bar",
 * "constraintId": "foo.bar",
 * "message": "bar must be greater than 0"
 * }
 * ```
 * 
* * Protobuf type {@code buf.validate.Violation} */ public final class Violation extends com.google.protobuf.GeneratedMessage implements // @@protoc_insertion_point(message_implements:buf.validate.Violation) ViolationOrBuilder { private static final long serialVersionUID = 0L; static { com.google.protobuf.RuntimeVersion.validateProtobufGencodeVersion( com.google.protobuf.RuntimeVersion.RuntimeDomain.PUBLIC, /* major= */ 4, /* minor= */ 28, /* patch= */ 1, /* suffix= */ "", Violation.class.getName()); } // Use Violation.newBuilder() to construct. private Violation(com.google.protobuf.GeneratedMessage.Builder builder) { super(builder); } private Violation() { fieldPath_ = ""; constraintId_ = ""; message_ = ""; } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return build.buf.validate.ValidateProto.internal_static_buf_validate_Violation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return build.buf.validate.ValidateProto.internal_static_buf_validate_Violation_fieldAccessorTable .ensureFieldAccessorsInitialized( build.buf.validate.Violation.class, build.buf.validate.Violation.Builder.class); } private int bitField0_; public static final int FIELD_PATH_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object fieldPath_ = ""; /** *
   * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
   * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
   * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @return Whether the fieldPath field is set. */ @java.lang.Override public boolean hasFieldPath() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
   * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
   * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @return The fieldPath. */ @java.lang.Override public java.lang.String getFieldPath() { java.lang.Object ref = fieldPath_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { fieldPath_ = s; } return s; } } /** *
   * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
   * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
   * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @return The bytes for fieldPath. */ @java.lang.Override public com.google.protobuf.ByteString getFieldPathBytes() { java.lang.Object ref = fieldPath_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); fieldPath_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int CONSTRAINT_ID_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object constraintId_ = ""; /** *
   * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
   * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
   * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @return Whether the constraintId field is set. */ @java.lang.Override public boolean hasConstraintId() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
   * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
   * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @return The constraintId. */ @java.lang.Override public java.lang.String getConstraintId() { java.lang.Object ref = constraintId_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { constraintId_ = s; } return s; } } /** *
   * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
   * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
   * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @return The bytes for constraintId. */ @java.lang.Override public com.google.protobuf.ByteString getConstraintIdBytes() { java.lang.Object ref = constraintId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); constraintId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int MESSAGE_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object message_ = ""; /** *
   * `message` is a human-readable error message that describes the nature of the violation.
   * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
   * 
* * optional string message = 3 [json_name = "message"]; * @return Whether the message field is set. */ @java.lang.Override public boolean hasMessage() { return ((bitField0_ & 0x00000004) != 0); } /** *
   * `message` is a human-readable error message that describes the nature of the violation.
   * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
   * 
* * optional string message = 3 [json_name = "message"]; * @return The message. */ @java.lang.Override public java.lang.String getMessage() { java.lang.Object ref = message_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { message_ = s; } return s; } } /** *
   * `message` is a human-readable error message that describes the nature of the violation.
   * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
   * 
* * optional string message = 3 [json_name = "message"]; * @return The bytes for message. */ @java.lang.Override public com.google.protobuf.ByteString getMessageBytes() { java.lang.Object ref = message_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); message_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int FOR_KEY_FIELD_NUMBER = 4; private boolean forKey_ = false; /** *
   * `for_key` indicates whether the violation was caused by a map key, rather than a value.
   * 
* * optional bool for_key = 4 [json_name = "forKey"]; * @return Whether the forKey field is set. */ @java.lang.Override public boolean hasForKey() { return ((bitField0_ & 0x00000008) != 0); } /** *
   * `for_key` indicates whether the violation was caused by a map key, rather than a value.
   * 
* * optional bool for_key = 4 [json_name = "forKey"]; * @return The forKey. */ @java.lang.Override public boolean getForKey() { return forKey_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (((bitField0_ & 0x00000001) != 0)) { com.google.protobuf.GeneratedMessage.writeString(output, 1, fieldPath_); } if (((bitField0_ & 0x00000002) != 0)) { com.google.protobuf.GeneratedMessage.writeString(output, 2, constraintId_); } if (((bitField0_ & 0x00000004) != 0)) { com.google.protobuf.GeneratedMessage.writeString(output, 3, message_); } if (((bitField0_ & 0x00000008) != 0)) { output.writeBool(4, forKey_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(1, fieldPath_); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(2, constraintId_); } if (((bitField0_ & 0x00000004) != 0)) { size += com.google.protobuf.GeneratedMessage.computeStringSize(3, message_); } if (((bitField0_ & 0x00000008) != 0)) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(4, forKey_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof build.buf.validate.Violation)) { return super.equals(obj); } build.buf.validate.Violation other = (build.buf.validate.Violation) obj; if (hasFieldPath() != other.hasFieldPath()) return false; if (hasFieldPath()) { if (!getFieldPath() .equals(other.getFieldPath())) return false; } if (hasConstraintId() != other.hasConstraintId()) return false; if (hasConstraintId()) { if (!getConstraintId() .equals(other.getConstraintId())) return false; } if (hasMessage() != other.hasMessage()) return false; if (hasMessage()) { if (!getMessage() .equals(other.getMessage())) return false; } if (hasForKey() != other.hasForKey()) return false; if (hasForKey()) { if (getForKey() != other.getForKey()) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasFieldPath()) { hash = (37 * hash) + FIELD_PATH_FIELD_NUMBER; hash = (53 * hash) + getFieldPath().hashCode(); } if (hasConstraintId()) { hash = (37 * hash) + CONSTRAINT_ID_FIELD_NUMBER; hash = (53 * hash) + getConstraintId().hashCode(); } if (hasMessage()) { hash = (37 * hash) + MESSAGE_FIELD_NUMBER; hash = (53 * hash) + getMessage().hashCode(); } if (hasForKey()) { hash = (37 * hash) + FOR_KEY_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getForKey()); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static build.buf.validate.Violation parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.buf.validate.Violation parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static build.buf.validate.Violation parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.buf.validate.Violation parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static build.buf.validate.Violation parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static build.buf.validate.Violation parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static build.buf.validate.Violation parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static build.buf.validate.Violation parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input, extensionRegistry); } public static build.buf.validate.Violation parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input); } public static build.buf.validate.Violation parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static build.buf.validate.Violation parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input); } public static build.buf.validate.Violation parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessage .parseWithIOException(PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(build.buf.validate.Violation prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessage.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * `Violation` represents a single instance where a validation rule, expressed
   * as a `Constraint`, was not met. It provides information about the field that
   * caused the violation, the specific constraint that wasn't fulfilled, and a
   * human-readable error message.
   *
   * ```json
   * {
   * "fieldPath": "bar",
   * "constraintId": "foo.bar",
   * "message": "bar must be greater than 0"
   * }
   * ```
   * 
* * Protobuf type {@code buf.validate.Violation} */ public static final class Builder extends com.google.protobuf.GeneratedMessage.Builder implements // @@protoc_insertion_point(builder_implements:buf.validate.Violation) build.buf.validate.ViolationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return build.buf.validate.ValidateProto.internal_static_buf_validate_Violation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable() { return build.buf.validate.ValidateProto.internal_static_buf_validate_Violation_fieldAccessorTable .ensureFieldAccessorsInitialized( build.buf.validate.Violation.class, build.buf.validate.Violation.Builder.class); } // Construct using build.buf.validate.Violation.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessage.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; fieldPath_ = ""; constraintId_ = ""; message_ = ""; forKey_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return build.buf.validate.ValidateProto.internal_static_buf_validate_Violation_descriptor; } @java.lang.Override public build.buf.validate.Violation getDefaultInstanceForType() { return build.buf.validate.Violation.getDefaultInstance(); } @java.lang.Override public build.buf.validate.Violation build() { build.buf.validate.Violation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public build.buf.validate.Violation buildPartial() { build.buf.validate.Violation result = new build.buf.validate.Violation(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(build.buf.validate.Violation result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.fieldPath_ = fieldPath_; to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.constraintId_ = constraintId_; to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000004) != 0)) { result.message_ = message_; to_bitField0_ |= 0x00000004; } if (((from_bitField0_ & 0x00000008) != 0)) { result.forKey_ = forKey_; to_bitField0_ |= 0x00000008; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof build.buf.validate.Violation) { return mergeFrom((build.buf.validate.Violation)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(build.buf.validate.Violation other) { if (other == build.buf.validate.Violation.getDefaultInstance()) return this; if (other.hasFieldPath()) { fieldPath_ = other.fieldPath_; bitField0_ |= 0x00000001; onChanged(); } if (other.hasConstraintId()) { constraintId_ = other.constraintId_; bitField0_ |= 0x00000002; onChanged(); } if (other.hasMessage()) { message_ = other.message_; bitField0_ |= 0x00000004; onChanged(); } if (other.hasForKey()) { setForKey(other.getForKey()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { fieldPath_ = input.readBytes(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { constraintId_ = input.readBytes(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { message_ = input.readBytes(); bitField0_ |= 0x00000004; break; } // case 26 case 32: { forKey_ = input.readBool(); bitField0_ |= 0x00000008; break; } // case 32 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object fieldPath_ = ""; /** *
     * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
     * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
     * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @return Whether the fieldPath field is set. */ public boolean hasFieldPath() { return ((bitField0_ & 0x00000001) != 0); } /** *
     * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
     * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
     * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @return The fieldPath. */ public java.lang.String getFieldPath() { java.lang.Object ref = fieldPath_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { fieldPath_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
     * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
     * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @return The bytes for fieldPath. */ public com.google.protobuf.ByteString getFieldPathBytes() { java.lang.Object ref = fieldPath_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); fieldPath_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
     * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
     * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @param value The fieldPath to set. * @return This builder for chaining. */ public Builder setFieldPath( java.lang.String value) { if (value == null) { throw new NullPointerException(); } fieldPath_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
     * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
     * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @return This builder for chaining. */ public Builder clearFieldPath() { fieldPath_ = getDefaultInstance().getFieldPath(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** *
     * `field_path` is a machine-readable identifier that points to the specific field that failed the validation.
     * This could be a nested field, in which case the path will include all the parent fields leading to the actual field that caused the violation.
     * 
* * optional string field_path = 1 [json_name = "fieldPath"]; * @param value The bytes for fieldPath to set. * @return This builder for chaining. */ public Builder setFieldPathBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } fieldPath_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object constraintId_ = ""; /** *
     * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
     * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
     * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @return Whether the constraintId field is set. */ public boolean hasConstraintId() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
     * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
     * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @return The constraintId. */ public java.lang.String getConstraintId() { java.lang.Object ref = constraintId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { constraintId_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
     * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
     * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @return The bytes for constraintId. */ public com.google.protobuf.ByteString getConstraintIdBytes() { java.lang.Object ref = constraintId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); constraintId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
     * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
     * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @param value The constraintId to set. * @return This builder for chaining. */ public Builder setConstraintId( java.lang.String value) { if (value == null) { throw new NullPointerException(); } constraintId_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
     * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
     * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @return This builder for chaining. */ public Builder clearConstraintId() { constraintId_ = getDefaultInstance().getConstraintId(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** *
     * `constraint_id` is the unique identifier of the `Constraint` that was not fulfilled.
     * This is the same `id` that was specified in the `Constraint` message, allowing easy tracing of which rule was violated.
     * 
* * optional string constraint_id = 2 [json_name = "constraintId"]; * @param value The bytes for constraintId to set. * @return This builder for chaining. */ public Builder setConstraintIdBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } constraintId_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object message_ = ""; /** *
     * `message` is a human-readable error message that describes the nature of the violation.
     * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
     * 
* * optional string message = 3 [json_name = "message"]; * @return Whether the message field is set. */ public boolean hasMessage() { return ((bitField0_ & 0x00000004) != 0); } /** *
     * `message` is a human-readable error message that describes the nature of the violation.
     * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
     * 
* * optional string message = 3 [json_name = "message"]; * @return The message. */ public java.lang.String getMessage() { java.lang.Object ref = message_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (bs.isValidUtf8()) { message_ = s; } return s; } else { return (java.lang.String) ref; } } /** *
     * `message` is a human-readable error message that describes the nature of the violation.
     * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
     * 
* * optional string message = 3 [json_name = "message"]; * @return The bytes for message. */ public com.google.protobuf.ByteString getMessageBytes() { java.lang.Object ref = message_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); message_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * `message` is a human-readable error message that describes the nature of the violation.
     * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
     * 
* * optional string message = 3 [json_name = "message"]; * @param value The message to set. * @return This builder for chaining. */ public Builder setMessage( java.lang.String value) { if (value == null) { throw new NullPointerException(); } message_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * `message` is a human-readable error message that describes the nature of the violation.
     * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
     * 
* * optional string message = 3 [json_name = "message"]; * @return This builder for chaining. */ public Builder clearMessage() { message_ = getDefaultInstance().getMessage(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** *
     * `message` is a human-readable error message that describes the nature of the violation.
     * This can be the default error message from the violated `Constraint`, or it can be a custom message that gives more context about the violation.
     * 
* * optional string message = 3 [json_name = "message"]; * @param value The bytes for message to set. * @return This builder for chaining. */ public Builder setMessageBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } message_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private boolean forKey_ ; /** *
     * `for_key` indicates whether the violation was caused by a map key, rather than a value.
     * 
* * optional bool for_key = 4 [json_name = "forKey"]; * @return Whether the forKey field is set. */ @java.lang.Override public boolean hasForKey() { return ((bitField0_ & 0x00000008) != 0); } /** *
     * `for_key` indicates whether the violation was caused by a map key, rather than a value.
     * 
* * optional bool for_key = 4 [json_name = "forKey"]; * @return The forKey. */ @java.lang.Override public boolean getForKey() { return forKey_; } /** *
     * `for_key` indicates whether the violation was caused by a map key, rather than a value.
     * 
* * optional bool for_key = 4 [json_name = "forKey"]; * @param value The forKey to set. * @return This builder for chaining. */ public Builder setForKey(boolean value) { forKey_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * `for_key` indicates whether the violation was caused by a map key, rather than a value.
     * 
* * optional bool for_key = 4 [json_name = "forKey"]; * @return This builder for chaining. */ public Builder clearForKey() { bitField0_ = (bitField0_ & ~0x00000008); forKey_ = false; onChanged(); return this; } // @@protoc_insertion_point(builder_scope:buf.validate.Violation) } // @@protoc_insertion_point(class_scope:buf.validate.Violation) private static final build.buf.validate.Violation DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new build.buf.validate.Violation(); } public static build.buf.validate.Violation getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Violation parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public build.buf.validate.Violation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy