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

akka.serial.Parity.scala Maven / Gradle / Ivy

The newest version!
package akka.serial

/** Specifies available parities used in serial communication. */
object Parity extends Enumeration {
  type Parity = Value
  val None = Value(0)
  val Odd = Value(1)
  val Even = Value(2)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy