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
#80
PIN番号やOUTPUT/INPUTなどの定数がint型になっており,不正な入力が入ってくる可能性がある. その対応のために余計なvalidation等も入っておりややこしい.
定数をEnum化する. konashi1/konashi2対応も利用するE<E extends Enum>を差し替えるだけで容易に実現可能(な気がする).
E<E extends Enum>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
#80
WHY
PIN番号やOUTPUT/INPUTなどの定数がint型になっており,不正な入力が入ってくる可能性がある.
その対応のために余計なvalidation等も入っておりややこしい.
HOW
定数をEnum化する.
konashi1/konashi2対応も利用する
E<E extends Enum>
を差し替えるだけで容易に実現可能(な気がする).The text was updated successfully, but these errors were encountered: