本文整理了Java中org.kohsuke.args4j.Option.name()
方法的一些代码示例,展示了Option.name()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Option.name()
方法的具体详情如下:
包路径:org.kohsuke.args4j.Option
类名称:Option
方法名:name
暂无
代码示例来源:origin: apache/incubator-pinot
/**
* Helper method to print usage at the command line interface.
*/
private static void printUsage() {
System.out.println("Usage: ColumnarToStarTreeConverter");
for (Field field : ColumnarToStarTreeConverter.class.getDeclaredFields()) {
if (field.isAnnotationPresent(Option.class)) {
Option option = field.getAnnotation(Option.class);
System.out
.println(String.format("\t%-15s: %s (required=%s)", option.name(), option.usage(), option.required()));
}
}
}
代码示例来源:origin: apache/incubator-pinot
/**
* Helper method to print usage at the command line interface.
*/
private static void printUsage() {
System.out.println("Usage: DictionaryTORawIndexConverter");
for (Field field : ColumnarToStarTreeConverter.class.getDeclaredFields()) {
if (field.isAnnotationPresent(Option.class)) {
Option option = field.getAnnotation(Option.class);
System.out
.println(String.format("\t%-15s: %s (required=%s)", option.name(), option.usage(), option.required()));
}
}
}
代码示例来源: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: kohsuke/args4j
public int compare(OptionWithUsage o1, OptionWithUsage o2) {
return o1.option.name().compareTo(o2.option.name());
}
}
代码示例来源:origin: kohsuke/args4j
public void onOption( OptionWithUsage optionWithUsage) {
out.println("\t" + optionWithUsage.option.name() + ": " + required(optionWithUsage.option) + optionWithUsage.usage);
}
代码示例来源:origin: kohsuke/args4j
public void onOption( OptionWithUsage optionWithUsage ) {
out.println(" <tr>");
writeTag("td","args4j-option",optionWithUsage.option.name());
writeTag("td","args4j-usage",optionWithUsage.usage);
out.println(" </tr>");
}
代码示例来源:origin: kohsuke/args4j
public void onOption( OptionWithUsage optionWithUsage ) {
out.println(" <option>");
writeTag("name",optionWithUsage.option.name());
writeTag("usage",optionWithUsage.usage);
out.println(" </option>");
}
代码示例来源:origin: kohsuke/args4j
/**
* Programmatically defines an option (instead of reading it from annotations as normal).
*
* @param setter the setter for the type
* @param o the {@code Option}
* @throws NullPointerException if {@code setter} or {@code o} is {@code null}.
* @throws IllegalAnnotationError if the option name or one of the aliases is already taken.
*/
public void addOption(Setter setter, Option o) {
checkNonNull(setter, "Setter");
checkNonNull(o, "Option");
checkOptionNotInMap(o.name());
for (String alias : o.aliases()) {
checkOptionNotInMap(alias);
}
options.add(createOptionHandler(new NamedOptionDef(o), setter));
}
代码示例来源:origin: args4j/args4j
/**
* Programmatically defines an option (instead of reading it from annotations as normal).
*
* @param setter the setter for the type
* @param o the {@code Option}
* @throws NullPointerException if {@code setter} or {@code o} is {@code null}.
* @throws IllegalAnnotationError if the option name or one of the aliases is already taken.
*/
public void addOption(Setter setter, Option o) {
checkNonNull(setter, "Setter");
checkNonNull(o, "Option");
checkOptionNotInMap(o.name());
for (String alias : o.aliases()) {
checkOptionNotInMap(alias);
}
options.add(createOptionHandler(new NamedOptionDef(o), setter));
}
代码示例来源: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: 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: args4j/args4j-tools
public int compare(OptionWithUsage o1, OptionWithUsage o2) {
return o1.option.name().compareTo(o2.option.name());
}
}
代码示例来源:origin: args4j/args4j-tools
public void onOption( OptionWithUsage optionWithUsage) {
out.println("\t" + optionWithUsage.option.name() + ": " + required(optionWithUsage.option) + optionWithUsage.usage);
}
代码示例来源:origin: args4j/args4j-tools
public void onOption( OptionWithUsage optionWithUsage ) {
out.println(" <tr>");
writeTag("td","args4j-option",optionWithUsage.option.name());
writeTag("td","args4j-usage",optionWithUsage.usage);
out.println(" </tr>");
}
代码示例来源:origin: args4j/args4j-tools
public void onOption( OptionWithUsage optionWithUsage ) {
out.println(" <option>");
writeTag("name",optionWithUsage.option.name());
writeTag("usage",optionWithUsage.usage);
out.println(" </option>");
}
代码示例来源:origin: OpenNMS/opennms
private void printFieldValues(Class<?> clazz) {
try {
for (Field eachField : clazz.getDeclaredFields()) {
eachField.setAccessible(true);
if (eachField.getAnnotation(Option.class) != null) {
Option option = eachField.getAnnotation(Option.class);
LOG.debug("%tOption {} = {}", option.name(), eachField.get(this));
}
if (eachField.getAnnotation(Argument.class) != null) {
LOG.debug("%tArgument {}", eachField.get(this));
}
}
} catch (IllegalAccessException e) {
Throwables.propagate(e);
}
}
代码示例来源:origin: org.opennms.features/jmxconfiggenerator
private void printFieldValues(Class<?> clazz) {
try {
for (Field eachField : clazz.getDeclaredFields()) {
eachField.setAccessible(true);
if (eachField.getAnnotation(Option.class) != null) {
Option option = eachField.getAnnotation(Option.class);
LOG.debug("%tOption {} = {}", option.name(), eachField.get(this));
}
if (eachField.getAnnotation(Argument.class) != null) {
LOG.debug("%tArgument {}", eachField.get(this));
}
}
} catch (IllegalAccessException e) {
Throwables.propagate(e);
}
}
代码示例来源:origin: org.zenframework.z8.dependencies.minimizers/closure
/**
* Programmatically defines an option (instead of reading it from annotations as normal).
*
* @param setter the setter for the type
* @param o the {@code Option}
* @throws NullPointerException if {@code setter} or {@code o} is {@code null}.
* @throws IllegalAnnotationError if the option name or one of the aliases is already taken.
*/
public void addOption(Setter setter, Option o) {
checkNonNull(setter, "Setter");
checkNonNull(o, "Option");
checkOptionNotInMap(o.name());
for (String alias : o.aliases()) {
checkOptionNotInMap(alias);
}
options.add(createOptionHandler(new NamedOptionDef(o), setter));
}
代码示例来源: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());
}
内容来源于网络,如有侵权,请联系作者删除!