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
QbeastOptions is constructed by a Map of Strings containing (or not) different information for writing in a Qbeast table.
The structure of the builder is a Case Class with a companion Object that does the apply().
qbeast-spark/src/main/scala/io/qbeast/spark/internal/QbeastOptions.scala
Lines 42 to 49 in 2fedabc
We wanted to avoid having "default" fields in the case class, but then we end up having an empty object containing exactly those values.
empty
Lines 144 to 145 in 2fedabc
This issue is to evaluate the creation of QbeastOptions following a Builder Pattern (like in Java) for Scala. Here's a practical guide: https://www.baeldung.com/scala/builder-pattern
The text was updated successfully, but these errors were encountered:
No branches or pull requests
QbeastOptions is constructed by a Map of Strings containing (or not) different information for writing in a Qbeast table.
The structure of the builder is a Case Class with a companion Object that does the apply().
qbeast-spark/src/main/scala/io/qbeast/spark/internal/QbeastOptions.scala
Lines 42 to 49 in 2fedabc
We wanted to avoid having "default" fields in the case class, but then we end up having an
empty
object containing exactly those values.qbeast-spark/src/main/scala/io/qbeast/spark/internal/QbeastOptions.scala
Lines 144 to 145 in 2fedabc
This issue is to evaluate the creation of QbeastOptions following a Builder Pattern (like in Java) for Scala. Here's a practical guide: https://www.baeldung.com/scala/builder-pattern
The text was updated successfully, but these errors were encountered: