| 193 | } |
| 194 | |
| 195 | private static final class INT implements Kind { |
| 196 | @Override |
| 197 | public void process(String arg, String option, Map<String,Object> options) { |
| 198 | options.put(arg,Integer.parseInt(option)); |
| 199 | } |
| 200 | @Override |
| 201 | public String toString() { |
| 202 | return "<int>"; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | private static final class LONG implements Kind { |
| 207 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected