DoubleRules

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

DoubleRules describes the constraints applied to double values

DoubleRules describes the constraints applied to double 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[DoubleRules]
trait GeneratedMessage
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def addAllIn(__vs: Iterable[Double]): DoubleRules
def addAllNotIn(__vs: Iterable[Double]): DoubleRules
def addIn(__vs: Double*): DoubleRules
def addNotIn(__vs: Double*): DoubleRules
def companion: GeneratedMessageCompanion[_]
def getConst: Double
def getField(__field: FieldDescriptor): PValue
def getFieldByNumber(__fieldNumber: Int): Any
def getGt: Double
def getGte: Double
def getLt: Double
def getLte: Double
override def serializedSize: Int
Definition Classes
GeneratedMessage
def toProtoString: String
def withConst(__v: Double): DoubleRules
def withGt(__v: Double): DoubleRules
def withGte(__v: Double): DoubleRules
def withIn(__v: Seq[Double]): DoubleRules
def withLt(__v: Double): DoubleRules
def withLte(__v: Double): DoubleRules
def withNotIn(__v: Seq[Double]): DoubleRules
def withUnknownFields(__v: UnknownFieldSet): DoubleRules
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