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

com.rojoma.json.v3.codec.FieldCodec.scala Maven / Gradle / Ivy

The newest version!
package com.rojoma.json.v3
package codec

object FieldCodec {
  def scalaEnumCodec[T <: Enumeration](enum: T): FieldEncode[enum.Value] with FieldDecode[enum.Value] =
    new FieldEncode[enum.Value] with FieldDecode[enum.Value] {
      def encode(x: enum.Value) = x.toString
      def decode(x: String) =
        try { Right(enum.withName(x)) }
        catch { case _: NoSuchElementException => Left(DecodeError.InvalidField(x)) }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy