(String code)
| 683 | } |
| 684 | |
| 685 | public static HyphDict byCode(String code) { |
| 686 | for (HyphDict dict : values) |
| 687 | if (dict.toString().equals(code)) |
| 688 | return dict; |
| 689 | return NONE; |
| 690 | } |
| 691 | |
| 692 | public static HyphDict byFileName(String fileName) { |
| 693 | for (HyphDict dict : values) |
no test coverage detected