-
Notifications
You must be signed in to change notification settings - Fork 7
HierarchicalField, JsonExtractor, and FilterBuilder #18
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
Conversation
/** | ||
* @return an unmodifiable list of fields representing the path to the parent element of the inner most field defined by this class | ||
*/ | ||
public List<String> getPathToField() { |
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.
change the method getPathToField to getParentPath
/** | ||
* @return an unmodifiable list of fields representing the path to a field nested within an object | ||
*/ | ||
public List<String> getFullPathToField() { |
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.
Change this to getFullPath . The ToField is implied given that we are a HierarchicalField. It being a JSON field seems to be implied.
Changing the impl, but I'll leave the branch alone if you still want it. |
No description provided.