SInt32Rules

@SerialVersionUID(0L) final case class SInt32Rules(const: Option[Int], lt: Option[Int], lte: Option[Int], gt: Option[Int], gte: Option[Int], in: Seq[Int], notIn: Seq[Int], unknownFields: UnknownFieldSet) extends GeneratedMessage with Updatable[SInt32Rules]

SInt32Rules describes the constraints applied to sint32 values

SInt32Rules describes the constraints applied to sint32 values

Value Params
const

Const specifies that this field must be exactly the specified value

gt

Gt specifies that this field must be greater than the specified value, exclusive. If the value of Gt is larger than a specified Lt or Lte, the range is reversed.

gte

Gte specifies that this field must be greater than or equal to the specified value, inclusive. If the value of Gte is larger than a specified Lt or Lte, the range is reversed.

in

In specifies that this field must be equal to one of the specified values

lt

Lt specifies that this field must be less than the specified value, exclusive

lte

Lte specifies that this field must be less than or equal to the specified value, inclusive

notIn

NotIn specifies that this field cannot be equal to one of the specified values

Companion
object
trait Updatable[SInt32Rules]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def addAllIn(__vs: Iterable[Int]): SInt32Rules
def addAllNotIn(__vs: Iterable[Int]): SInt32Rules
def addIn(__vs: Int*): SInt32Rules
def addNotIn(__vs: Int*): SInt32Rules
def companion: GeneratedMessageCompanion[_]
def getConst: Int
def getField(__field: FieldDescriptor): PValue
def getFieldByNumber(__fieldNumber: Int): Any
def getGt: Int
def getGte: Int
def getLt: Int
def getLte: Int
override def serializedSize: Int
Definition Classes
GeneratedMessage
def toProtoString: String
def withConst(__v: Int): SInt32Rules
def withGt(__v: Int): SInt32Rules
def withGte(__v: Int): SInt32Rules
def withIn(__v: Seq[Int]): SInt32Rules
def withLt(__v: Int): SInt32Rules
def withLte(__v: Int): SInt32Rules
def withNotIn(__v: Seq[Int]): SInt32Rules
def withUnknownFields(__v: UnknownFieldSet): SInt32Rules
def writeTo(_output__: CodedOutputStream): Unit

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
final def toByteArray: Array[Byte]

Serializes the messgae and returns a byte array containing its raw bytes

Serializes the messgae and returns a byte array containing its raw bytes

Inherited from
GeneratedMessage
final def toByteString: ByteString

Serializes the messgae and returns a ByteString containing its raw bytes

Serializes the messgae and returns a ByteString containing its raw bytes

Inherited from
GeneratedMessage
final def toPMessage: PMessage
Inherited from
GeneratedMessage
Inherited from
Updatable
final def writeDelimitedTo(output: OutputStream): Unit
Inherited from
GeneratedMessage
final def writeTo(output: OutputStream): Unit

Serializes the message into the given output stream

Serializes the message into the given output stream

Inherited from
GeneratedMessage