Parses textual representation of a key. @param name Textual representation of the key @return Key for the key with the given name, null if the string is unknown
(String name)
| 201 | * is unknown |
| 202 | */ |
| 203 | public static Key fromString(String name) { |
| 204 | return _nameMap.get(name); |
| 205 | } |
| 206 | } |