We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To follow a complete typesafe approach, leaf level values should NOT be converted to primitive types. but instead, to value classes
e.g.
{ "id": 2, "name": "Steve Nash", "score": 4.23 }
should be
case class R00tJsonObject(id: Id, name: Name, score: Score) case class Id (value: Int) extends AnyVal case class Name(value: String) extends AnyVal case class Score(value: Double) extends AnyVal
The text was updated successfully, but these errors were encountered:
I'd like to see this as a button on the analysis panel, next to the Optional checkbox (maybe in addition to the full-auto approach described above).
Optional
When modifying the type name of a field in the analysis area for a primitive type, it should generate the value class wrapper for it
Sorry, something went wrong.
No branches or pull requests
To follow a complete typesafe approach, leaf level values should NOT be converted to primitive types. but instead, to value classes
e.g.
should be
The text was updated successfully, but these errors were encountered: