Skip to content
New issue

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

Add a configuration strategy for Boolean encoding #2

Closed
6 tasks done
scottmatthewman opened this issue Jan 2, 2024 · 0 comments · Fixed by #10
Closed
6 tasks done

Add a configuration strategy for Boolean encoding #2

scottmatthewman opened this issue Jan 2, 2024 · 0 comments · Fixed by #10
Assignees
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@scottmatthewman
Copy link
Owner

scottmatthewman commented Jan 2, 2024

Booleans are currently configured to output as the text strings true or false.

Add a new configuration parameter to CSVEncoderConfiguration to support different styles of encoding:

encoding type True encodes as False encodes as
.trueFalse (default) true false
.trueFalseUppercase TRUE FALSE
.yesNo yes no
.yesNoUppercase YES NO
.integer 1 0

Expected work to do:

  • Add BoolEncodingStrategy enum to CSVEncoderConfiguration with all options documented
  • Add boolEncodingStrategy property to CSVEncoderConguration
  • Update CSVEncoderConfiguration.default to use the default [^1]
  • Update Bool.encode() method to amend output based on configuration strategy
  • Add unit tests for each strategy
  • Review and verify generated DocC documentation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant