-
Notifications
You must be signed in to change notification settings - Fork 94
fix: add javadoc to core (part i) #648
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
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: MBWhite <[email protected]>
benbellick
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing this! Just left one comment about some comments being extra, but you can take it or leave it.
Just curious, are there plans in the future to enforce that all public methods have associated javadoc comments?
|
|
||
| /** Extension identifier for approximate aggregate functions. */ | ||
| public static final String FUNCTIONS_AGGREGATE_APPROX = | ||
| "extension:io.substrait:functions_aggregate_approx"; | ||
|
|
||
| /** Extension identifier for generic aggregate functions. */ | ||
| public static final String FUNCTIONS_AGGREGATE_GENERIC = | ||
| "extension:io.substrait:functions_aggregate_generic"; | ||
|
|
||
| /** Extension identifier for arithmetic functions. */ | ||
| public static final String FUNCTIONS_ARITHMETIC = "extension:io.substrait:functions_arithmetic"; | ||
|
|
||
| /** Extension identifier for decimal arithmetic functions. */ | ||
| public static final String FUNCTIONS_ARITHMETIC_DECIMAL = | ||
| "extension:io.substrait:functions_arithmetic_decimal"; | ||
|
|
||
| /** Extension identifier for boolean functions. */ | ||
| public static final String FUNCTIONS_BOOLEAN = "extension:io.substrait:functions_boolean"; | ||
|
|
||
| /** Extension identifier for comparison functions. */ | ||
| public static final String FUNCTIONS_COMPARISON = "extension:io.substrait:functions_comparison"; | ||
|
|
||
| /** Extension identifier for datetime functions. */ | ||
| public static final String FUNCTIONS_DATETIME = "extension:io.substrait:functions_datetime"; | ||
|
|
||
| /** Extension identifier for geometry functions. */ | ||
| public static final String FUNCTIONS_GEOMETRY = "extension:io.substrait:functions_geometry"; | ||
|
|
||
| /** Extension identifier for logarithmic functions. */ | ||
| public static final String FUNCTIONS_LOGARITHMIC = "extension:io.substrait:functions_logarithmic"; | ||
|
|
||
| /** Extension identifier for rounding functions. */ | ||
| public static final String FUNCTIONS_ROUNDING = "extension:io.substrait:functions_rounding"; | ||
|
|
||
| /** Extension identifier for decimal rounding functions. */ | ||
| public static final String FUNCTIONS_ROUNDING_DECIMAL = | ||
| "extension:io.substrait:functions_rounding_decimal"; | ||
|
|
||
| /** Extension identifier for set functions. */ | ||
| public static final String FUNCTIONS_SET = "extension:io.substrait:functions_set"; | ||
|
|
||
| /** Extension identifier for string functions. */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO, these comments are a bit excessive and I would drop them. That's just my opinion though :)
No description provided.