build.buf.validate.DoubleRules Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protovalidate Show documentation
Show all versions of protovalidate Show documentation
Protocol Buffer Validation
The 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;
/**
*
* DoubleRules describes the constraints applied to `double` values. These
* rules may also be applied to the `google.protobuf.DoubleValue` Well-Known-Type.
*
*
* Protobuf type {@code buf.validate.DoubleRules}
*/
public final class DoubleRules extends
com.google.protobuf.GeneratedMessage implements
// @@protoc_insertion_point(message_implements:buf.validate.DoubleRules)
DoubleRulesOrBuilder {
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= */ "",
DoubleRules.class.getName());
}
// Use DoubleRules.newBuilder() to construct.
private DoubleRules(com.google.protobuf.GeneratedMessage.Builder> builder) {
super(builder);
}
private DoubleRules() {
in_ = emptyDoubleList();
notIn_ = emptyDoubleList();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.buf.validate.ValidateProto.internal_static_buf_validate_DoubleRules_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.buf.validate.ValidateProto.internal_static_buf_validate_DoubleRules_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.buf.validate.DoubleRules.class, build.buf.validate.DoubleRules.Builder.class);
}
private int bitField0_;
private int lessThanCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object lessThan_;
public enum LessThanCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
LT(2),
LTE(3),
LESSTHAN_NOT_SET(0);
private final int value;
private LessThanCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static LessThanCase valueOf(int value) {
return forNumber(value);
}
public static LessThanCase forNumber(int value) {
switch (value) {
case 2: return LT;
case 3: return LTE;
case 0: return LESSTHAN_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public LessThanCase
getLessThanCase() {
return LessThanCase.forNumber(
lessThanCase_);
}
private int greaterThanCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object greaterThan_;
public enum GreaterThanCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
GT(4),
GTE(5),
GREATERTHAN_NOT_SET(0);
private final int value;
private GreaterThanCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static GreaterThanCase valueOf(int value) {
return forNumber(value);
}
public static GreaterThanCase forNumber(int value) {
switch (value) {
case 4: return GT;
case 5: return GTE;
case 0: return GREATERTHAN_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public GreaterThanCase
getGreaterThanCase() {
return GreaterThanCase.forNumber(
greaterThanCase_);
}
public static final int CONST_FIELD_NUMBER = 1;
private double const_ = 0D;
/**
*
* `const` requires the field value to exactly match the specified value. If
* the field value doesn't match, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must equal 42.0
* double value = 1 [(buf.validate.field).double.const = 42.0];
* }
* ```
*
*
* optional double const = 1 [json_name = "const", (.buf.validate.priv.field) = { ... }
* @return Whether the const field is set.
*/
@java.lang.Override
public boolean hasConst() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* `const` requires the field value to exactly match the specified value. If
* the field value doesn't match, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must equal 42.0
* double value = 1 [(buf.validate.field).double.const = 42.0];
* }
* ```
*
*
* optional double const = 1 [json_name = "const", (.buf.validate.priv.field) = { ... }
* @return The const.
*/
@java.lang.Override
public double getConst() {
return const_;
}
public static final int LT_FIELD_NUMBER = 2;
/**
*
* `lt` requires the field value to be less than the specified value (field <
* value). If the field value is equal to or greater than the specified
* value, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than 10.0
* double value = 1 [(buf.validate.field).double.lt = 10.0];
* }
* ```
*
*
* double lt = 2 [json_name = "lt", (.buf.validate.priv.field) = { ... }
* @return Whether the lt field is set.
*/
@java.lang.Override
public boolean hasLt() {
return lessThanCase_ == 2;
}
/**
*
* `lt` requires the field value to be less than the specified value (field <
* value). If the field value is equal to or greater than the specified
* value, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than 10.0
* double value = 1 [(buf.validate.field).double.lt = 10.0];
* }
* ```
*
*
* double lt = 2 [json_name = "lt", (.buf.validate.priv.field) = { ... }
* @return The lt.
*/
@java.lang.Override
public double getLt() {
if (lessThanCase_ == 2) {
return (java.lang.Double) lessThan_;
}
return 0D;
}
public static final int LTE_FIELD_NUMBER = 3;
/**
*
* `lte` requires the field value to be less than or equal to the specified value
* (field <= value). If the field value is greater than the specified value,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than or equal to 10.0
* double value = 1 [(buf.validate.field).double.lte = 10.0];
* }
* ```
*
*
* double lte = 3 [json_name = "lte", (.buf.validate.priv.field) = { ... }
* @return Whether the lte field is set.
*/
@java.lang.Override
public boolean hasLte() {
return lessThanCase_ == 3;
}
/**
*
* `lte` requires the field value to be less than or equal to the specified value
* (field <= value). If the field value is greater than the specified value,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than or equal to 10.0
* double value = 1 [(buf.validate.field).double.lte = 10.0];
* }
* ```
*
*
* double lte = 3 [json_name = "lte", (.buf.validate.priv.field) = { ... }
* @return The lte.
*/
@java.lang.Override
public double getLte() {
if (lessThanCase_ == 3) {
return (java.lang.Double) lessThan_;
}
return 0D;
}
public static final int GT_FIELD_NUMBER = 4;
/**
*
* `gt` requires the field value to be greater than the specified value
* (exclusive). If the value of `gt` is larger than a specified `lt` or `lte`,
* the range is reversed, and the field value must be outside the specified
* range. If the field value doesn't meet the required conditions, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than 5.0 [double.gt]
* double value = 1 [(buf.validate.field).double.gt = 5.0];
*
* // value must be greater than 5 and less than 10.0 [double.gt_lt]
* double other_value = 2 [(buf.validate.field).double = { gt: 5.0, lt: 10.0 }];
*
* // value must be greater than 10 or less than 5.0 [double.gt_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gt: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gt = 4 [json_name = "gt", (.buf.validate.priv.field) = { ... }
* @return Whether the gt field is set.
*/
@java.lang.Override
public boolean hasGt() {
return greaterThanCase_ == 4;
}
/**
*
* `gt` requires the field value to be greater than the specified value
* (exclusive). If the value of `gt` is larger than a specified `lt` or `lte`,
* the range is reversed, and the field value must be outside the specified
* range. If the field value doesn't meet the required conditions, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than 5.0 [double.gt]
* double value = 1 [(buf.validate.field).double.gt = 5.0];
*
* // value must be greater than 5 and less than 10.0 [double.gt_lt]
* double other_value = 2 [(buf.validate.field).double = { gt: 5.0, lt: 10.0 }];
*
* // value must be greater than 10 or less than 5.0 [double.gt_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gt: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gt = 4 [json_name = "gt", (.buf.validate.priv.field) = { ... }
* @return The gt.
*/
@java.lang.Override
public double getGt() {
if (greaterThanCase_ == 4) {
return (java.lang.Double) greaterThan_;
}
return 0D;
}
public static final int GTE_FIELD_NUMBER = 5;
/**
*
* `gte` requires the field value to be greater than or equal to the specified
* value (exclusive). If the value of `gte` is larger than a specified `lt` or
* `lte`, the range is reversed, and the field value must be outside the
* specified range. If the field value doesn't meet the required conditions,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than or equal to 5.0 [double.gte]
* double value = 1 [(buf.validate.field).double.gte = 5.0];
*
* // value must be greater than or equal to 5.0 and less than 10.0 [double.gte_lt]
* double other_value = 2 [(buf.validate.field).double = { gte: 5.0, lt: 10.0 }];
*
* // value must be greater than or equal to 10.0 or less than 5.0 [double.gte_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gte: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gte = 5 [json_name = "gte", (.buf.validate.priv.field) = { ... }
* @return Whether the gte field is set.
*/
@java.lang.Override
public boolean hasGte() {
return greaterThanCase_ == 5;
}
/**
*
* `gte` requires the field value to be greater than or equal to the specified
* value (exclusive). If the value of `gte` is larger than a specified `lt` or
* `lte`, the range is reversed, and the field value must be outside the
* specified range. If the field value doesn't meet the required conditions,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than or equal to 5.0 [double.gte]
* double value = 1 [(buf.validate.field).double.gte = 5.0];
*
* // value must be greater than or equal to 5.0 and less than 10.0 [double.gte_lt]
* double other_value = 2 [(buf.validate.field).double = { gte: 5.0, lt: 10.0 }];
*
* // value must be greater than or equal to 10.0 or less than 5.0 [double.gte_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gte: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gte = 5 [json_name = "gte", (.buf.validate.priv.field) = { ... }
* @return The gte.
*/
@java.lang.Override
public double getGte() {
if (greaterThanCase_ == 5) {
return (java.lang.Double) greaterThan_;
}
return 0D;
}
public static final int IN_FIELD_NUMBER = 6;
@SuppressWarnings("serial")
private com.google.protobuf.Internal.DoubleList in_ =
emptyDoubleList();
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @return A list containing the in.
*/
@java.lang.Override
public java.util.List
getInList() {
return in_;
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @return The count of in.
*/
public int getInCount() {
return in_.size();
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @param index The index of the element to return.
* @return The in at the given index.
*/
public double getIn(int index) {
return in_.getDouble(index);
}
private int inMemoizedSerializedSize = -1;
public static final int NOT_IN_FIELD_NUMBER = 7;
@SuppressWarnings("serial")
private com.google.protobuf.Internal.DoubleList notIn_ =
emptyDoubleList();
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @return A list containing the notIn.
*/
@java.lang.Override
public java.util.List
getNotInList() {
return notIn_;
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @return The count of notIn.
*/
public int getNotInCount() {
return notIn_.size();
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @param index The index of the element to return.
* @return The notIn at the given index.
*/
public double getNotIn(int index) {
return notIn_.getDouble(index);
}
private int notInMemoizedSerializedSize = -1;
public static final int FINITE_FIELD_NUMBER = 8;
private boolean finite_ = false;
/**
*
* `finite` requires the field value to be finite. If the field value is
* infinite or NaN, an error message is generated.
*
*
* bool finite = 8 [json_name = "finite", (.buf.validate.priv.field) = { ... }
* @return The finite.
*/
@java.lang.Override
public boolean getFinite() {
return finite_;
}
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 {
getSerializedSize();
if (((bitField0_ & 0x00000001) != 0)) {
output.writeDouble(1, const_);
}
if (lessThanCase_ == 2) {
output.writeDouble(
2, (double)((java.lang.Double) lessThan_));
}
if (lessThanCase_ == 3) {
output.writeDouble(
3, (double)((java.lang.Double) lessThan_));
}
if (greaterThanCase_ == 4) {
output.writeDouble(
4, (double)((java.lang.Double) greaterThan_));
}
if (greaterThanCase_ == 5) {
output.writeDouble(
5, (double)((java.lang.Double) greaterThan_));
}
if (getInList().size() > 0) {
output.writeUInt32NoTag(50);
output.writeUInt32NoTag(inMemoizedSerializedSize);
}
for (int i = 0; i < in_.size(); i++) {
output.writeDoubleNoTag(in_.getDouble(i));
}
if (getNotInList().size() > 0) {
output.writeUInt32NoTag(58);
output.writeUInt32NoTag(notInMemoizedSerializedSize);
}
for (int i = 0; i < notIn_.size(); i++) {
output.writeDoubleNoTag(notIn_.getDouble(i));
}
if (finite_ != false) {
output.writeBool(8, finite_);
}
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.CodedOutputStream
.computeDoubleSize(1, const_);
}
if (lessThanCase_ == 2) {
size += com.google.protobuf.CodedOutputStream
.computeDoubleSize(
2, (double)((java.lang.Double) lessThan_));
}
if (lessThanCase_ == 3) {
size += com.google.protobuf.CodedOutputStream
.computeDoubleSize(
3, (double)((java.lang.Double) lessThan_));
}
if (greaterThanCase_ == 4) {
size += com.google.protobuf.CodedOutputStream
.computeDoubleSize(
4, (double)((java.lang.Double) greaterThan_));
}
if (greaterThanCase_ == 5) {
size += com.google.protobuf.CodedOutputStream
.computeDoubleSize(
5, (double)((java.lang.Double) greaterThan_));
}
{
int dataSize = 0;
dataSize = 8 * getInList().size();
size += dataSize;
if (!getInList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
inMemoizedSerializedSize = dataSize;
}
{
int dataSize = 0;
dataSize = 8 * getNotInList().size();
size += dataSize;
if (!getNotInList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
notInMemoizedSerializedSize = dataSize;
}
if (finite_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(8, finite_);
}
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.DoubleRules)) {
return super.equals(obj);
}
build.buf.validate.DoubleRules other = (build.buf.validate.DoubleRules) obj;
if (hasConst() != other.hasConst()) return false;
if (hasConst()) {
if (java.lang.Double.doubleToLongBits(getConst())
!= java.lang.Double.doubleToLongBits(
other.getConst())) return false;
}
if (!getInList()
.equals(other.getInList())) return false;
if (!getNotInList()
.equals(other.getNotInList())) return false;
if (getFinite()
!= other.getFinite()) return false;
if (!getLessThanCase().equals(other.getLessThanCase())) return false;
switch (lessThanCase_) {
case 2:
if (java.lang.Double.doubleToLongBits(getLt())
!= java.lang.Double.doubleToLongBits(
other.getLt())) return false;
break;
case 3:
if (java.lang.Double.doubleToLongBits(getLte())
!= java.lang.Double.doubleToLongBits(
other.getLte())) return false;
break;
case 0:
default:
}
if (!getGreaterThanCase().equals(other.getGreaterThanCase())) return false;
switch (greaterThanCase_) {
case 4:
if (java.lang.Double.doubleToLongBits(getGt())
!= java.lang.Double.doubleToLongBits(
other.getGt())) return false;
break;
case 5:
if (java.lang.Double.doubleToLongBits(getGte())
!= java.lang.Double.doubleToLongBits(
other.getGte())) return false;
break;
case 0:
default:
}
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 (hasConst()) {
hash = (37 * hash) + CONST_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getConst()));
}
if (getInCount() > 0) {
hash = (37 * hash) + IN_FIELD_NUMBER;
hash = (53 * hash) + getInList().hashCode();
}
if (getNotInCount() > 0) {
hash = (37 * hash) + NOT_IN_FIELD_NUMBER;
hash = (53 * hash) + getNotInList().hashCode();
}
hash = (37 * hash) + FINITE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getFinite());
switch (lessThanCase_) {
case 2:
hash = (37 * hash) + LT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getLt()));
break;
case 3:
hash = (37 * hash) + LTE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getLte()));
break;
case 0:
default:
}
switch (greaterThanCase_) {
case 4:
hash = (37 * hash) + GT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getGt()));
break;
case 5:
hash = (37 * hash) + GTE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getGte()));
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static build.buf.validate.DoubleRules parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.buf.validate.DoubleRules 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.DoubleRules parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.buf.validate.DoubleRules 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.DoubleRules parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static build.buf.validate.DoubleRules parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static build.buf.validate.DoubleRules parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static build.buf.validate.DoubleRules 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.DoubleRules parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseDelimitedWithIOException(PARSER, input);
}
public static build.buf.validate.DoubleRules 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.DoubleRules parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessage
.parseWithIOException(PARSER, input);
}
public static build.buf.validate.DoubleRules 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.DoubleRules 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;
}
/**
*
* DoubleRules describes the constraints applied to `double` values. These
* rules may also be applied to the `google.protobuf.DoubleValue` Well-Known-Type.
*
*
* Protobuf type {@code buf.validate.DoubleRules}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessage.Builder implements
// @@protoc_insertion_point(builder_implements:buf.validate.DoubleRules)
build.buf.validate.DoubleRulesOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return build.buf.validate.ValidateProto.internal_static_buf_validate_DoubleRules_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
internalGetFieldAccessorTable() {
return build.buf.validate.ValidateProto.internal_static_buf_validate_DoubleRules_fieldAccessorTable
.ensureFieldAccessorsInitialized(
build.buf.validate.DoubleRules.class, build.buf.validate.DoubleRules.Builder.class);
}
// Construct using build.buf.validate.DoubleRules.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessage.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
const_ = 0D;
in_ = emptyDoubleList();
notIn_ = emptyDoubleList();
finite_ = false;
lessThanCase_ = 0;
lessThan_ = null;
greaterThanCase_ = 0;
greaterThan_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return build.buf.validate.ValidateProto.internal_static_buf_validate_DoubleRules_descriptor;
}
@java.lang.Override
public build.buf.validate.DoubleRules getDefaultInstanceForType() {
return build.buf.validate.DoubleRules.getDefaultInstance();
}
@java.lang.Override
public build.buf.validate.DoubleRules build() {
build.buf.validate.DoubleRules result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public build.buf.validate.DoubleRules buildPartial() {
build.buf.validate.DoubleRules result = new build.buf.validate.DoubleRules(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(build.buf.validate.DoubleRules result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.const_ = const_;
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
in_.makeImmutable();
result.in_ = in_;
}
if (((from_bitField0_ & 0x00000040) != 0)) {
notIn_.makeImmutable();
result.notIn_ = notIn_;
}
if (((from_bitField0_ & 0x00000080) != 0)) {
result.finite_ = finite_;
}
result.bitField0_ |= to_bitField0_;
}
private void buildPartialOneofs(build.buf.validate.DoubleRules result) {
result.lessThanCase_ = lessThanCase_;
result.lessThan_ = this.lessThan_;
result.greaterThanCase_ = greaterThanCase_;
result.greaterThan_ = this.greaterThan_;
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof build.buf.validate.DoubleRules) {
return mergeFrom((build.buf.validate.DoubleRules)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(build.buf.validate.DoubleRules other) {
if (other == build.buf.validate.DoubleRules.getDefaultInstance()) return this;
if (other.hasConst()) {
setConst(other.getConst());
}
if (!other.in_.isEmpty()) {
if (in_.isEmpty()) {
in_ = other.in_;
in_.makeImmutable();
bitField0_ |= 0x00000020;
} else {
ensureInIsMutable();
in_.addAll(other.in_);
}
onChanged();
}
if (!other.notIn_.isEmpty()) {
if (notIn_.isEmpty()) {
notIn_ = other.notIn_;
notIn_.makeImmutable();
bitField0_ |= 0x00000040;
} else {
ensureNotInIsMutable();
notIn_.addAll(other.notIn_);
}
onChanged();
}
if (other.getFinite() != false) {
setFinite(other.getFinite());
}
switch (other.getLessThanCase()) {
case LT: {
setLt(other.getLt());
break;
}
case LTE: {
setLte(other.getLte());
break;
}
case LESSTHAN_NOT_SET: {
break;
}
}
switch (other.getGreaterThanCase()) {
case GT: {
setGt(other.getGt());
break;
}
case GTE: {
setGte(other.getGte());
break;
}
case GREATERTHAN_NOT_SET: {
break;
}
}
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 9: {
const_ = input.readDouble();
bitField0_ |= 0x00000001;
break;
} // case 9
case 17: {
lessThan_ = input.readDouble();
lessThanCase_ = 2;
break;
} // case 17
case 25: {
lessThan_ = input.readDouble();
lessThanCase_ = 3;
break;
} // case 25
case 33: {
greaterThan_ = input.readDouble();
greaterThanCase_ = 4;
break;
} // case 33
case 41: {
greaterThan_ = input.readDouble();
greaterThanCase_ = 5;
break;
} // case 41
case 49: {
double v = input.readDouble();
ensureInIsMutable();
in_.addDouble(v);
break;
} // case 49
case 50: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
int alloc = length > 4096 ? 4096 : length;
ensureInIsMutable(alloc / 8);
while (input.getBytesUntilLimit() > 0) {
in_.addDouble(input.readDouble());
}
input.popLimit(limit);
break;
} // case 50
case 57: {
double v = input.readDouble();
ensureNotInIsMutable();
notIn_.addDouble(v);
break;
} // case 57
case 58: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
int alloc = length > 4096 ? 4096 : length;
ensureNotInIsMutable(alloc / 8);
while (input.getBytesUntilLimit() > 0) {
notIn_.addDouble(input.readDouble());
}
input.popLimit(limit);
break;
} // case 58
case 64: {
finite_ = input.readBool();
bitField0_ |= 0x00000080;
break;
} // case 64
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 lessThanCase_ = 0;
private java.lang.Object lessThan_;
public LessThanCase
getLessThanCase() {
return LessThanCase.forNumber(
lessThanCase_);
}
public Builder clearLessThan() {
lessThanCase_ = 0;
lessThan_ = null;
onChanged();
return this;
}
private int greaterThanCase_ = 0;
private java.lang.Object greaterThan_;
public GreaterThanCase
getGreaterThanCase() {
return GreaterThanCase.forNumber(
greaterThanCase_);
}
public Builder clearGreaterThan() {
greaterThanCase_ = 0;
greaterThan_ = null;
onChanged();
return this;
}
private int bitField0_;
private double const_ ;
/**
*
* `const` requires the field value to exactly match the specified value. If
* the field value doesn't match, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must equal 42.0
* double value = 1 [(buf.validate.field).double.const = 42.0];
* }
* ```
*
*
* optional double const = 1 [json_name = "const", (.buf.validate.priv.field) = { ... }
* @return Whether the const field is set.
*/
@java.lang.Override
public boolean hasConst() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* `const` requires the field value to exactly match the specified value. If
* the field value doesn't match, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must equal 42.0
* double value = 1 [(buf.validate.field).double.const = 42.0];
* }
* ```
*
*
* optional double const = 1 [json_name = "const", (.buf.validate.priv.field) = { ... }
* @return The const.
*/
@java.lang.Override
public double getConst() {
return const_;
}
/**
*
* `const` requires the field value to exactly match the specified value. If
* the field value doesn't match, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must equal 42.0
* double value = 1 [(buf.validate.field).double.const = 42.0];
* }
* ```
*
*
* optional double const = 1 [json_name = "const", (.buf.validate.priv.field) = { ... }
* @param value The const to set.
* @return This builder for chaining.
*/
public Builder setConst(double value) {
const_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* `const` requires the field value to exactly match the specified value. If
* the field value doesn't match, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must equal 42.0
* double value = 1 [(buf.validate.field).double.const = 42.0];
* }
* ```
*
*
* optional double const = 1 [json_name = "const", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearConst() {
bitField0_ = (bitField0_ & ~0x00000001);
const_ = 0D;
onChanged();
return this;
}
/**
*
* `lt` requires the field value to be less than the specified value (field <
* value). If the field value is equal to or greater than the specified
* value, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than 10.0
* double value = 1 [(buf.validate.field).double.lt = 10.0];
* }
* ```
*
*
* double lt = 2 [json_name = "lt", (.buf.validate.priv.field) = { ... }
* @return Whether the lt field is set.
*/
public boolean hasLt() {
return lessThanCase_ == 2;
}
/**
*
* `lt` requires the field value to be less than the specified value (field <
* value). If the field value is equal to or greater than the specified
* value, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than 10.0
* double value = 1 [(buf.validate.field).double.lt = 10.0];
* }
* ```
*
*
* double lt = 2 [json_name = "lt", (.buf.validate.priv.field) = { ... }
* @return The lt.
*/
public double getLt() {
if (lessThanCase_ == 2) {
return (java.lang.Double) lessThan_;
}
return 0D;
}
/**
*
* `lt` requires the field value to be less than the specified value (field <
* value). If the field value is equal to or greater than the specified
* value, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than 10.0
* double value = 1 [(buf.validate.field).double.lt = 10.0];
* }
* ```
*
*
* double lt = 2 [json_name = "lt", (.buf.validate.priv.field) = { ... }
* @param value The lt to set.
* @return This builder for chaining.
*/
public Builder setLt(double value) {
lessThanCase_ = 2;
lessThan_ = value;
onChanged();
return this;
}
/**
*
* `lt` requires the field value to be less than the specified value (field <
* value). If the field value is equal to or greater than the specified
* value, an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than 10.0
* double value = 1 [(buf.validate.field).double.lt = 10.0];
* }
* ```
*
*
* double lt = 2 [json_name = "lt", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearLt() {
if (lessThanCase_ == 2) {
lessThanCase_ = 0;
lessThan_ = null;
onChanged();
}
return this;
}
/**
*
* `lte` requires the field value to be less than or equal to the specified value
* (field <= value). If the field value is greater than the specified value,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than or equal to 10.0
* double value = 1 [(buf.validate.field).double.lte = 10.0];
* }
* ```
*
*
* double lte = 3 [json_name = "lte", (.buf.validate.priv.field) = { ... }
* @return Whether the lte field is set.
*/
public boolean hasLte() {
return lessThanCase_ == 3;
}
/**
*
* `lte` requires the field value to be less than or equal to the specified value
* (field <= value). If the field value is greater than the specified value,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than or equal to 10.0
* double value = 1 [(buf.validate.field).double.lte = 10.0];
* }
* ```
*
*
* double lte = 3 [json_name = "lte", (.buf.validate.priv.field) = { ... }
* @return The lte.
*/
public double getLte() {
if (lessThanCase_ == 3) {
return (java.lang.Double) lessThan_;
}
return 0D;
}
/**
*
* `lte` requires the field value to be less than or equal to the specified value
* (field <= value). If the field value is greater than the specified value,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than or equal to 10.0
* double value = 1 [(buf.validate.field).double.lte = 10.0];
* }
* ```
*
*
* double lte = 3 [json_name = "lte", (.buf.validate.priv.field) = { ... }
* @param value The lte to set.
* @return This builder for chaining.
*/
public Builder setLte(double value) {
lessThanCase_ = 3;
lessThan_ = value;
onChanged();
return this;
}
/**
*
* `lte` requires the field value to be less than or equal to the specified value
* (field <= value). If the field value is greater than the specified value,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be less than or equal to 10.0
* double value = 1 [(buf.validate.field).double.lte = 10.0];
* }
* ```
*
*
* double lte = 3 [json_name = "lte", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearLte() {
if (lessThanCase_ == 3) {
lessThanCase_ = 0;
lessThan_ = null;
onChanged();
}
return this;
}
/**
*
* `gt` requires the field value to be greater than the specified value
* (exclusive). If the value of `gt` is larger than a specified `lt` or `lte`,
* the range is reversed, and the field value must be outside the specified
* range. If the field value doesn't meet the required conditions, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than 5.0 [double.gt]
* double value = 1 [(buf.validate.field).double.gt = 5.0];
*
* // value must be greater than 5 and less than 10.0 [double.gt_lt]
* double other_value = 2 [(buf.validate.field).double = { gt: 5.0, lt: 10.0 }];
*
* // value must be greater than 10 or less than 5.0 [double.gt_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gt: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gt = 4 [json_name = "gt", (.buf.validate.priv.field) = { ... }
* @return Whether the gt field is set.
*/
public boolean hasGt() {
return greaterThanCase_ == 4;
}
/**
*
* `gt` requires the field value to be greater than the specified value
* (exclusive). If the value of `gt` is larger than a specified `lt` or `lte`,
* the range is reversed, and the field value must be outside the specified
* range. If the field value doesn't meet the required conditions, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than 5.0 [double.gt]
* double value = 1 [(buf.validate.field).double.gt = 5.0];
*
* // value must be greater than 5 and less than 10.0 [double.gt_lt]
* double other_value = 2 [(buf.validate.field).double = { gt: 5.0, lt: 10.0 }];
*
* // value must be greater than 10 or less than 5.0 [double.gt_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gt: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gt = 4 [json_name = "gt", (.buf.validate.priv.field) = { ... }
* @return The gt.
*/
public double getGt() {
if (greaterThanCase_ == 4) {
return (java.lang.Double) greaterThan_;
}
return 0D;
}
/**
*
* `gt` requires the field value to be greater than the specified value
* (exclusive). If the value of `gt` is larger than a specified `lt` or `lte`,
* the range is reversed, and the field value must be outside the specified
* range. If the field value doesn't meet the required conditions, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than 5.0 [double.gt]
* double value = 1 [(buf.validate.field).double.gt = 5.0];
*
* // value must be greater than 5 and less than 10.0 [double.gt_lt]
* double other_value = 2 [(buf.validate.field).double = { gt: 5.0, lt: 10.0 }];
*
* // value must be greater than 10 or less than 5.0 [double.gt_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gt: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gt = 4 [json_name = "gt", (.buf.validate.priv.field) = { ... }
* @param value The gt to set.
* @return This builder for chaining.
*/
public Builder setGt(double value) {
greaterThanCase_ = 4;
greaterThan_ = value;
onChanged();
return this;
}
/**
*
* `gt` requires the field value to be greater than the specified value
* (exclusive). If the value of `gt` is larger than a specified `lt` or `lte`,
* the range is reversed, and the field value must be outside the specified
* range. If the field value doesn't meet the required conditions, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than 5.0 [double.gt]
* double value = 1 [(buf.validate.field).double.gt = 5.0];
*
* // value must be greater than 5 and less than 10.0 [double.gt_lt]
* double other_value = 2 [(buf.validate.field).double = { gt: 5.0, lt: 10.0 }];
*
* // value must be greater than 10 or less than 5.0 [double.gt_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gt: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gt = 4 [json_name = "gt", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearGt() {
if (greaterThanCase_ == 4) {
greaterThanCase_ = 0;
greaterThan_ = null;
onChanged();
}
return this;
}
/**
*
* `gte` requires the field value to be greater than or equal to the specified
* value (exclusive). If the value of `gte` is larger than a specified `lt` or
* `lte`, the range is reversed, and the field value must be outside the
* specified range. If the field value doesn't meet the required conditions,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than or equal to 5.0 [double.gte]
* double value = 1 [(buf.validate.field).double.gte = 5.0];
*
* // value must be greater than or equal to 5.0 and less than 10.0 [double.gte_lt]
* double other_value = 2 [(buf.validate.field).double = { gte: 5.0, lt: 10.0 }];
*
* // value must be greater than or equal to 10.0 or less than 5.0 [double.gte_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gte: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gte = 5 [json_name = "gte", (.buf.validate.priv.field) = { ... }
* @return Whether the gte field is set.
*/
public boolean hasGte() {
return greaterThanCase_ == 5;
}
/**
*
* `gte` requires the field value to be greater than or equal to the specified
* value (exclusive). If the value of `gte` is larger than a specified `lt` or
* `lte`, the range is reversed, and the field value must be outside the
* specified range. If the field value doesn't meet the required conditions,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than or equal to 5.0 [double.gte]
* double value = 1 [(buf.validate.field).double.gte = 5.0];
*
* // value must be greater than or equal to 5.0 and less than 10.0 [double.gte_lt]
* double other_value = 2 [(buf.validate.field).double = { gte: 5.0, lt: 10.0 }];
*
* // value must be greater than or equal to 10.0 or less than 5.0 [double.gte_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gte: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gte = 5 [json_name = "gte", (.buf.validate.priv.field) = { ... }
* @return The gte.
*/
public double getGte() {
if (greaterThanCase_ == 5) {
return (java.lang.Double) greaterThan_;
}
return 0D;
}
/**
*
* `gte` requires the field value to be greater than or equal to the specified
* value (exclusive). If the value of `gte` is larger than a specified `lt` or
* `lte`, the range is reversed, and the field value must be outside the
* specified range. If the field value doesn't meet the required conditions,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than or equal to 5.0 [double.gte]
* double value = 1 [(buf.validate.field).double.gte = 5.0];
*
* // value must be greater than or equal to 5.0 and less than 10.0 [double.gte_lt]
* double other_value = 2 [(buf.validate.field).double = { gte: 5.0, lt: 10.0 }];
*
* // value must be greater than or equal to 10.0 or less than 5.0 [double.gte_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gte: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gte = 5 [json_name = "gte", (.buf.validate.priv.field) = { ... }
* @param value The gte to set.
* @return This builder for chaining.
*/
public Builder setGte(double value) {
greaterThanCase_ = 5;
greaterThan_ = value;
onChanged();
return this;
}
/**
*
* `gte` requires the field value to be greater than or equal to the specified
* value (exclusive). If the value of `gte` is larger than a specified `lt` or
* `lte`, the range is reversed, and the field value must be outside the
* specified range. If the field value doesn't meet the required conditions,
* an error message is generated.
*
* ```proto
* message MyDouble {
* // value must be greater than or equal to 5.0 [double.gte]
* double value = 1 [(buf.validate.field).double.gte = 5.0];
*
* // value must be greater than or equal to 5.0 and less than 10.0 [double.gte_lt]
* double other_value = 2 [(buf.validate.field).double = { gte: 5.0, lt: 10.0 }];
*
* // value must be greater than or equal to 10.0 or less than 5.0 [double.gte_lt_exclusive]
* double another_value = 3 [(buf.validate.field).double = { gte: 10.0, lt: 5.0 }];
* }
* ```
*
*
* double gte = 5 [json_name = "gte", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearGte() {
if (greaterThanCase_ == 5) {
greaterThanCase_ = 0;
greaterThan_ = null;
onChanged();
}
return this;
}
private com.google.protobuf.Internal.DoubleList in_ = emptyDoubleList();
private void ensureInIsMutable() {
if (!in_.isModifiable()) {
in_ = makeMutableCopy(in_);
}
bitField0_ |= 0x00000020;
}
private void ensureInIsMutable(int capacity) {
if (!in_.isModifiable()) {
in_ = makeMutableCopy(in_, capacity);
}
bitField0_ |= 0x00000020;
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @return A list containing the in.
*/
public java.util.List
getInList() {
in_.makeImmutable();
return in_;
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @return The count of in.
*/
public int getInCount() {
return in_.size();
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @param index The index of the element to return.
* @return The in at the given index.
*/
public double getIn(int index) {
return in_.getDouble(index);
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @param index The index to set the value at.
* @param value The in to set.
* @return This builder for chaining.
*/
public Builder setIn(
int index, double value) {
ensureInIsMutable();
in_.setDouble(index, value);
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @param value The in to add.
* @return This builder for chaining.
*/
public Builder addIn(double value) {
ensureInIsMutable();
in_.addDouble(value);
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @param values The in to add.
* @return This builder for chaining.
*/
public Builder addAllIn(
java.lang.Iterable extends java.lang.Double> values) {
ensureInIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, in_);
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
* `in` requires the field value to be equal to one of the specified values.
* If the field value isn't one of the specified values, an error message is
* generated.
*
* ```proto
* message MyDouble {
* // value must be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double in = 6 [json_name = "in", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearIn() {
in_ = emptyDoubleList();
bitField0_ = (bitField0_ & ~0x00000020);
onChanged();
return this;
}
private com.google.protobuf.Internal.DoubleList notIn_ = emptyDoubleList();
private void ensureNotInIsMutable() {
if (!notIn_.isModifiable()) {
notIn_ = makeMutableCopy(notIn_);
}
bitField0_ |= 0x00000040;
}
private void ensureNotInIsMutable(int capacity) {
if (!notIn_.isModifiable()) {
notIn_ = makeMutableCopy(notIn_, capacity);
}
bitField0_ |= 0x00000040;
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @return A list containing the notIn.
*/
public java.util.List
getNotInList() {
notIn_.makeImmutable();
return notIn_;
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @return The count of notIn.
*/
public int getNotInCount() {
return notIn_.size();
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @param index The index of the element to return.
* @return The notIn at the given index.
*/
public double getNotIn(int index) {
return notIn_.getDouble(index);
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @param index The index to set the value at.
* @param value The notIn to set.
* @return This builder for chaining.
*/
public Builder setNotIn(
int index, double value) {
ensureNotInIsMutable();
notIn_.setDouble(index, value);
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @param value The notIn to add.
* @return This builder for chaining.
*/
public Builder addNotIn(double value) {
ensureNotInIsMutable();
notIn_.addDouble(value);
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @param values The notIn to add.
* @return This builder for chaining.
*/
public Builder addAllNotIn(
java.lang.Iterable extends java.lang.Double> values) {
ensureNotInIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, notIn_);
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
* `not_in` requires the field value to not be equal to any of the specified
* values. If the field value is one of the specified values, an error
* message is generated.
*
* ```proto
* message MyDouble {
* // value must not be in list [1.0, 2.0, 3.0]
* repeated double value = 1 (buf.validate.field).double = { not_in: [1.0, 2.0, 3.0] };
* }
* ```
*
*
* repeated double not_in = 7 [json_name = "notIn", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearNotIn() {
notIn_ = emptyDoubleList();
bitField0_ = (bitField0_ & ~0x00000040);
onChanged();
return this;
}
private boolean finite_ ;
/**
*
* `finite` requires the field value to be finite. If the field value is
* infinite or NaN, an error message is generated.
*
*
* bool finite = 8 [json_name = "finite", (.buf.validate.priv.field) = { ... }
* @return The finite.
*/
@java.lang.Override
public boolean getFinite() {
return finite_;
}
/**
*
* `finite` requires the field value to be finite. If the field value is
* infinite or NaN, an error message is generated.
*
*
* bool finite = 8 [json_name = "finite", (.buf.validate.priv.field) = { ... }
* @param value The finite to set.
* @return This builder for chaining.
*/
public Builder setFinite(boolean value) {
finite_ = value;
bitField0_ |= 0x00000080;
onChanged();
return this;
}
/**
*
* `finite` requires the field value to be finite. If the field value is
* infinite or NaN, an error message is generated.
*
*
* bool finite = 8 [json_name = "finite", (.buf.validate.priv.field) = { ... }
* @return This builder for chaining.
*/
public Builder clearFinite() {
bitField0_ = (bitField0_ & ~0x00000080);
finite_ = false;
onChanged();
return this;
}
// @@protoc_insertion_point(builder_scope:buf.validate.DoubleRules)
}
// @@protoc_insertion_point(class_scope:buf.validate.DoubleRules)
private static final build.buf.validate.DoubleRules DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new build.buf.validate.DoubleRules();
}
public static build.buf.validate.DoubleRules getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DoubleRules 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.DoubleRules getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}