| Package | Description |
|---|---|
| com.pivotal.gemfirexd.tools.internal |
| Modifier and Type | Method and Description |
|---|---|
GfxdOptionBuilder |
GfxdOptionBuilder.hasArg()
The next Option created will require an argument value.
|
GfxdOptionBuilder |
GfxdOptionBuilder.hasArg(boolean hasArg)
The next Option created will require an argument value if
hasArg is true. |
GfxdOptionBuilder |
GfxdOptionBuilder.hasArgs()
The next Option created can have unlimited argument values.
|
GfxdOptionBuilder |
GfxdOptionBuilder.hasArgs(int num)
The next Option created can have
num argument values. |
GfxdOptionBuilder |
GfxdOptionBuilder.hasOptionalArg()
The next Option can have an optional argument.
|
GfxdOptionBuilder |
GfxdOptionBuilder.hasOptionalArgs()
The next Option can have an unlimited number of optional arguments.
|
GfxdOptionBuilder |
GfxdOptionBuilder.hasOptionalArgs(int numArgs)
The next Option can have the specified number of optional arguments.
|
GfxdOptionBuilder |
GfxdOptionBuilder.isRequired()
The next Option created will be required.
|
GfxdOptionBuilder |
GfxdOptionBuilder.isRequired(boolean newRequired)
The next Option created will be required if
required is true. |
GfxdOptionBuilder |
GfxdOptionBuilder.withArgName(String name)
The next Option created will have the specified argument value name.
|
GfxdOptionBuilder |
GfxdOptionBuilder.withDescription(String newDescription)
The next Option created will have the specified description
|
GfxdOptionBuilder |
GfxdOptionBuilder.withLongOpt(String newLongopt)
The next Option created will have the following long option value.
|
GfxdOptionBuilder |
GfxdOptionBuilder.withType(Object newType)
The next Option created will have a value that will be an instance of
type. |
GfxdOptionBuilder |
GfxdOptionBuilder.withValueSeparator()
The next Option created uses '
=' as a means to separate
argument values. |
GfxdOptionBuilder |
GfxdOptionBuilder.withValueSeparator(char sep)
The next Option created uses
sep as a means to separate
argument values. |
Copyright © 2010-2015 Pivotal Software, Inc. All rights reserved.