本文整理了Java中org.kohsuke.args4j.Option.metaVar()
方法的一些代码示例,展示了Option.metaVar()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Option.metaVar()
方法的具体详情如下:
包路径:org.kohsuke.args4j.Option
类名称:Option
方法名:metaVar
暂无
代码示例来源:origin: apache/incubator-pinot
public void printUsage() {
System.out.println("Usage: " + this.getName());
for (Field f : this.getClass().getDeclaredFields()) {
if (f.isAnnotationPresent(Option.class)) {
Option option = f.getAnnotation(Option.class);
System.out.println(String
.format("\t%-25s %-30s: %s (required=%s)", option.name(), option.metaVar(), option.usage(),
option.required()));
}
}
}
代码示例来源:origin: args4j/args4j
public NamedOptionDef(Option o) {
super(o.usage(),o.metaVar(),o.required(),o.help(),o.hidden(),o.handler(),false);
this.name = o.name();
this.aliases = createZeroSizedArrayIfNull(o.aliases());
this.depends = createZeroSizedArrayIfNull(o.depends());
this.forbids = createZeroSizedArrayIfNull(o.forbids());
}
代码示例来源:origin: kohsuke/args4j
public NamedOptionDef(Option o) {
super(o.usage(),o.metaVar(),o.required(),o.help(),o.hidden(),o.handler(),false);
this.name = o.name();
this.aliases = createZeroSizedArrayIfNull(o.aliases());
this.depends = createZeroSizedArrayIfNull(o.depends());
this.forbids = createZeroSizedArrayIfNull(o.forbids());
}
代码示例来源:origin: zanata/zanata-platform
private Iterable<Option> findByMetaVar(final String expectedMetaVar) {
return allOptions.stream().filter(input -> {
// THIS IS NOT QUITE RELIABLE. but hey :)
return input.metaVar().toLowerCase().contains(expectedMetaVar);
}).collect(toList());
}
代码示例来源:origin: Nextdoor/bender
public NamedOptionDef(Option o) {
super(o.usage(),o.metaVar(),o.required(),o.help(),o.hidden(),o.handler(),false);
this.name = o.name();
this.aliases = createZeroSizedArrayIfNull(o.aliases());
this.depends = createZeroSizedArrayIfNull(o.depends());
this.forbids = createZeroSizedArrayIfNull(o.forbids());
}
代码示例来源:origin: org.zenframework.z8.dependencies.minimizers/closure
public NamedOptionDef(Option o) {
super(o.usage(),o.metaVar(),o.required(),o.help(),o.hidden(),o.handler(),false);
this.name = o.name();
this.aliases = createZeroSizedArrayIfNull(o.aliases());
this.depends = createZeroSizedArrayIfNull(o.depends());
this.forbids = createZeroSizedArrayIfNull(o.forbids());
}
内容来源于网络,如有侵权,请联系作者删除!