Uses of Class
org.codehaus.mojo.jaxb2.shared.arguments.ArgumentBuilder
-
Packages that use ArgumentBuilder Package Description org.codehaus.mojo.jaxb2.shared.arguments -
-
Uses of ArgumentBuilder in org.codehaus.mojo.jaxb2.shared.arguments
Methods in org.codehaus.mojo.jaxb2.shared.arguments that return ArgumentBuilder Modifier and Type Method Description ArgumentBuilder
ArgumentBuilder. withFlag(boolean addFlag, String flag)
Adds a flag on the form-someflag
to the list of arguments contained within this ArgumentBuilder.ArgumentBuilder
ArgumentBuilder. withNamedArgument(boolean addNamedArgument, String name, String value)
Adds a name and an argument on the form-name value
to the list of arguments contained within this ArgumentBuilder.ArgumentBuilder
ArgumentBuilder. withNamedArgument(String name, String value)
Convenience form for thewithNamedArgument
method, where a named argument is only added if the value is non-null and non-empty after trimming.ArgumentBuilder
ArgumentBuilder. withPreCompiledArguments(List<String> preCompiledArguments)
Adds the supplied pre-compiled arguments in the same order as they were given.
-