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

ch.jodersky.flow.Parity.scala Maven / Gradle / Ivy

The newest version!
package ch.jodersky.flow

/** 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 - 2024 Weber Informatics LLC | Privacy Policy