MCPcopy Create free account
hub / github.com/annmuor/jnode / getOptionLong

Method getOptionLong

jnode-core/src/jnode/ftn/FtnTools.java:537–545  ·  view source on GitHub ↗
(Link link, String option)

Source from the content-addressed store, hash-verified

535 }
536
537 public static long getOptionLong(Link link, String option) {
538 String s = getOption(link, option);
539 long ret = 0;
540 try {
541 ret = Long.valueOf(s);
542 } catch (NumberFormatException ignore) {
543 }
544 return ret;
545 }
546
547 public static String[] getOptionStringArray(Link link, String option) {
548 String s = getOption(link, option);

Callers 3

getAreaByNameMethod · 0.95
getFileareaByNameMethod · 0.95
tossEchomailMethod · 0.80

Calls 1

getOptionMethod · 0.95

Tested by

no test coverage detected