8000
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
Example:
public class SomeConfig { private Mode mode = MODE_A; @NotNull public Mode getMode() { return mode; } @Config("mode) public SomeConfig setMode(Mode mode) { this.mode = mode; return this; } public enum Mode { MODE_A, MODE_B, MODE_C, } }
Currently user can only pass:
mode=MODE_B
or (automatic upper case)
mode=mode_b
It would be nice to pass also
mode=mode-b
- is more natural for humans than _, while - cannot be used in enum values
-
_
The text was updated successfully, but these errors were encountered:
In Presto, this would allow us to remove code like https://github.com/prestosql/presto/blob/889298f271c33982690fb0b2d45bd2d6e16d6ce4/presto-hive/src/main/java/io/prestosql/plugin/hive/rubix/RubixConfig.java#L52-L62
Sorry, something went wrong.
No branches or pull requests
Example:
Currently user can only pass:
or (automatic upper case)
It would be nice to pass also
-
is more natural for humans than_
, while-
cannot be used in enum valuesThe text was updated successfully, but these errors were encountered: