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

play.api.libs.json.EnumerationWrites.scala Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) from 2022 The Play Framework Contributors , 2011-2021 Lightbend Inc. 
 */

package play.api.libs.json

private[json] trait EnumerationWrites {

  /** Serializer for scala.Enumeration by name. */
  given enumNameWrites[E <: Enumeration](using e: ValueOf[E]): Writes[e.value.Value] =
    Writes[e.value.Value](value => JsString(value.toString))

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy