aboutsummaryrefslogtreecommitdiff
path: root/sync/src/main/scala/akka/serial/Parity.scala
blob: a1e1d04828d3a0f5f99678586bbc7cd4c725dd9b (plain) (blame)
1
2
3
4
5
6
7
8
9
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)
}