Returns the constant for the given String (the search for the constant is case insensitive). @param name The name of the constant to be returned @return The Constant for the given name
(String name)
| 757 | * @return The Constant for the given name |
| 758 | */ |
| 759 | public static synchronized JepCountType valueOf(String name) |
| 760 | { |
| 761 | if (typeMap == null) |
| 762 | { |
| 763 | buildMap(); |
| 764 | } |
| 765 | return typeMap.get(name); |
| 766 | } |
| 767 | |
| 768 | /** |
| 769 | * Returns a Collection of all of the Constants in this Class. |
no test coverage detected