java - Converting String to enum -
this question has answer here:
- lookup enum string value 22 answers
public enum day { sunday, monday, tuesday, wednesday, thursday, friday, saturday } if input "sunday" string, how can corresponding day.sunday?
day day = day.valueof("sunday");
Comments
Post a Comment