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

Better error message while parsing enums #29

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

rishidwivedi
Copy link

No description provided.

@rishidwivedi
Copy link
Author

Can anyone please review this pull request.

return valueOf.invoke(null, value);
}
catch (InvocationTargetException e) {
String errorMsg = "Invalid " + name + ", Valid values are: " + Joiner.on(", ").join(type.getEnumConstants());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't abbreviate variable names. This can just be message

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use String.format() instead of concatenation

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.getEnumConstants() returns null if the type is not an enum. This error message should only be generated for enums.

@rishidwivedi
Copy link
Author

@electrum : I have addressed review comments.

@electrum
Copy link
Member

This need to use .name()

On Mar 25, 2014, at 12:09 PM, Rishi Kesh Dwivedi notifications@github.com wrote:

@electrum : I have addressed review comments.


Reply to this email directly or view it on GitHub.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants