Converts a String representation of an Rcode into its numeric value
(String s)
| 116 | |
| 117 | /** Converts a String representation of an Rcode into its numeric value */ |
| 118 | public static int |
| 119 | value(String s) { |
| 120 | return rcodes.getValue(s); |
| 121 | } |
| 122 | |
| 123 | } |