def apply()

in benchmarking/src/main/scala/com/spotify/elitzur/ValidationTypeTestingExamples.scala [63:75]


  def apply(data: String): CountryCodeExample = CountryCodeExample(data)

  def parse(data: String): CountryCodeExample = CountryCodeExample(data)

  def owner: Owner = Blizzard

  def description: String = "Represents an ISO standard two-letter country code"
}



case class AgeExample(data: Long)
  extends BaseValidationType[Long] {