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

com.github.t3hnar.scalax.examples.RichEnumExample.scala Maven / Gradle / Ivy

The newest version!
package com.github.t3hnar.scalax
package examples

/**
 * @author Yaroslav Klymko
 */
object RichEnumExample {
  object Color extends Enumeration {
    val Green, Blue, Red = Value
  }

  import com.github.t3hnar.scalax.RichEnum

  Color.withNameOpt("Green") // Some(Green)
  Color.withNameOpt("Black") // None
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy