| 204 | } |
| 205 | |
| 206 | private static final class LONG implements Kind { |
| 207 | @Override |
| 208 | public void process(String arg, String option, Map<String,Object> options) { |
| 209 | options.put(arg,Long.parseLong(option)); |
| 210 | } |
| 211 | @Override |
| 212 | public String toString() { |
| 213 | return "<long>"; |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | private static final class FILE implements Kind { |
| 218 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected