Class Option
- java.lang.Object
-
- com.aspectran.shell.command.option.Option
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class Option extends java.lang.Object implements java.lang.Cloneable, java.io.SerializableDescribes a single command-line option. It maintains information regarding the short-name of the option, the long-name, if any exists, a flag indicating if an argument is required for this option, and a self-documenting description of the option.An Option is not created independently, but is created through an instance of
Options. An Option is required to have at least a short or a long-name.Note: once an
Optionhas been added to an instance ofOptions, it's required flag may not be changed anymore.- See Also:
Options,ParsedOptions, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOption.BuilderA nested builder class to createOptioninstances using descriptive methods.
-
Field Summary
Fields Modifier and Type Field Description static intUNINITIALIZEDConstant that specifies the number of argument values has not been specifiedstatic intUNLIMITED_VALUESConstant that specifies the number of argument values is infinite
-
Constructor Summary
Constructors Constructor Description Option(java.lang.String name, boolean hasValue, java.lang.String description)Creates an Option using the specified parameters.Option(java.lang.String name, java.lang.String description)Creates an Option using the specified parameters.Option(java.lang.String name, java.lang.String longName, boolean hasValue, java.lang.String description)Creates an Option using the specified parameters.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddValue(java.lang.String value)Adds the specified value to this Option.static Option.Builderbuilder()Returns aOption.Builderto create anOptionusing descriptive methods.static Option.Builderbuilder(java.lang.String name)Returns aOption.Builderto create anOptionusing descriptive methods.Optionclone()A rather odd clone method - due to incorrect code in 1.0 it is public and in 1.1 rather than throwing a CloneNotSupportedException it throws a RuntimeException so as to maintain backwards compat at the API level.booleanequals(java.lang.Object o)java.lang.StringgetDescription()Retrieve the self-documenting description of this OptionintgetId()Returns the id of this Option.java.lang.StringgetKey()Returns the 'unique' Option identifier.java.lang.StringgetLongName()Retrieve the long name of this Option.java.lang.StringgetName()Retrieve the name of this Option.intgetNumberOfValues()Returns the number of argument values this Option can take.java.lang.StringgetValue()Returns the specified value of this Option ornullif there is no value.java.lang.StringgetValue(int index)Returns the specified value of this Option ornullif there is no value.java.lang.StringgetValue(java.lang.String defaultValue)Returns the value/first value of this Option or thedefaultValueif there is no value.java.lang.StringgetValueName()Gets the display name for the argument value.java.lang.String[]getValues()Return the values of this Option as a String array or null if there are no values.java.util.List<java.lang.String>getValuesList()Returns the values of this Option as a List or null if there are no values.OptionValueTypegetValueType()Retrieve the type of this Option.inthashCode()booleanhasLongName()Query to see if this Option has a long name.booleanhasOptionalValue()Returns whether this Option can have an optional argument.booleanhasValue()Query to see if this Option requires an argument.booleanhasValueName()Returns whether the display name for the argument value has been set.booleanhasValues()Query to see if this Option can take many values.booleanisRequired()Query to see if this Option is mandatorybooleanisWithEqualSign()voidsetDescription(java.lang.String description)Sets the self-documenting description of this OptionvoidsetLongName(java.lang.String longName)Sets the long name of this Option.voidsetNumberOfValues(int num)Sets the number of argument values this Option can take.voidsetOptionalValue(boolean optionalValue)Sets whether this Option can have an optional argument.voidsetRequired(boolean required)Sets whether this Option is mandatory.voidsetValueName(java.lang.String valueName)Sets the display name for the argument value.voidsetValueType(OptionValueType valueType)Sets the type of this Option.voidsetWithEqualSign(boolean withEqualSign)java.lang.StringtoString()Dump state, suitable for debugging.voidwithEqualSign()
-
-
-
Field Detail
-
UNINITIALIZED
public static final int UNINITIALIZED
Constant that specifies the number of argument values has not been specified- See Also:
- Constant Field Values
-
UNLIMITED_VALUES
public static final int UNLIMITED_VALUES
Constant that specifies the number of argument values is infinite- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Option
public Option(java.lang.String name, java.lang.String description) throws java.lang.IllegalArgumentExceptionCreates an Option using the specified parameters. The option does not take an argument.- Parameters:
name- short representation of the optiondescription- describes the function of the option- Throws:
java.lang.IllegalArgumentException- if there are any non valid Option characters inname
-
Option
public Option(java.lang.String name, boolean hasValue, java.lang.String description) throws java.lang.IllegalArgumentExceptionCreates an Option using the specified parameters.- Parameters:
name- short representation of the optionhasValue- specifies whether the Option takes an argument value or notdescription- describes the function of the option- Throws:
java.lang.IllegalArgumentException- if there are any non valid Option characters inname
-
Option
public Option(java.lang.String name, java.lang.String longName, boolean hasValue, java.lang.String description) throws java.lang.IllegalArgumentExceptionCreates an Option using the specified parameters.- Parameters:
name- short representation of the optionlongName- the long representation of the optionhasValue- specifies whether the Option takes an argument value or notdescription- describes the function of the option- Throws:
java.lang.IllegalArgumentException- if there are any non valid Option characters inname
-
-
Method Detail
-
getId
public int getId()
Returns the id of this Option. This is only set when the Option shortOpt is a single character. This is used for switch statements.- Returns:
- the id of this Option
-
getKey
public java.lang.String getKey()
Returns the 'unique' Option identifier.- Returns:
- the 'unique' Option identifier
-
getName
public java.lang.String getName()
Retrieve the name of this Option. It is this String which can be used withParsedOptions.hasOption(String name)andParsedOptions.getValue(String name)to check for existence and argument.- Returns:
- the name of this option
-
getLongName
public java.lang.String getLongName()
Retrieve the long name of this Option.- Returns:
- the long name of this Option, or null, if there is no long name
-
setLongName
public void setLongName(java.lang.String longName)
Sets the long name of this Option.- Parameters:
longName- the long name of this Option
-
hasLongName
public boolean hasLongName()
Query to see if this Option has a long name.- Returns:
- boolean flag indicating existence of a long name
-
getValueName
public java.lang.String getValueName()
Gets the display name for the argument value.- Returns:
- the display name for the argument value
-
setValueName
public void setValueName(java.lang.String valueName)
Sets the display name for the argument value.- Parameters:
valueName- the display name for the argument value
-
hasValueName
public boolean hasValueName()
Returns whether the display name for the argument value has been set.- Returns:
- if the display name for the argument value has been set
-
getValueType
public OptionValueType getValueType()
Retrieve the type of this Option.- Returns:
- the type of this option
-
setValueType
public void setValueType(OptionValueType valueType)
Sets the type of this Option.- Parameters:
valueType- the type of this Option
-
setOptionalValue
public void setOptionalValue(boolean optionalValue)
Sets whether this Option can have an optional argument.- Parameters:
optionalValue- specifies whether the Option can have an optional argument.
-
hasOptionalValue
public boolean hasOptionalValue()
Returns whether this Option can have an optional argument.- Returns:
- whether this Option can have an optional argument
-
getNumberOfValues
public int getNumberOfValues()
Returns the number of argument values this Option can take.A value equal to the constant
UNINITIALIZED(= -1) indicates the number of arguments has not been specified. A value equal to the constantUNLIMITED_VALUES(= -2) indicates that this options takes an unlimited amount of values.- Returns:
- num the number of argument values
- See Also:
UNINITIALIZED,UNLIMITED_VALUES
-
setNumberOfValues
public void setNumberOfValues(int num)
Sets the number of argument values this Option can take.- Parameters:
num- the number of argument values
-
hasValue
public boolean hasValue()
Query to see if this Option requires an argument.- Returns:
- boolean flag indicating if an argument is required
-
hasValues
public boolean hasValues()
Query to see if this Option can take many values.- Returns:
- boolean flag indicating if multiple values are allowed
-
withEqualSign
public void withEqualSign()
-
isWithEqualSign
public boolean isWithEqualSign()
-
setWithEqualSign
public void setWithEqualSign(boolean withEqualSign)
-
addValue
public void addValue(java.lang.String value)
Adds the specified value to this Option.- Parameters:
value- is a/the value of this Option
-
getValue
public java.lang.String getValue()
Returns the specified value of this Option ornullif there is no value.- Returns:
- the value/first value of this Option or
nullif there is no value
-
getValue
public java.lang.String getValue(int index) throws java.lang.IndexOutOfBoundsExceptionReturns the specified value of this Option ornullif there is no value.- Parameters:
index- the index of the value to be returned.- Returns:
- the specified value of this Option or
nullif there is no value. - Throws:
java.lang.IndexOutOfBoundsException- if index is less than 1 or greater than the number of the values for this Option
-
getValue
public java.lang.String getValue(java.lang.String defaultValue)
Returns the value/first value of this Option or thedefaultValueif there is no value.- Parameters:
defaultValue- the value to be returned if there is no value.- Returns:
- the value/first value of this Option or the
defaultValueif there are no values
-
getValues
public java.lang.String[] getValues()
Return the values of this Option as a String array or null if there are no values.- Returns:
- the values of this Option as a String array or null if there are no values
-
getValuesList
public java.util.List<java.lang.String> getValuesList()
Returns the values of this Option as a List or null if there are no values.- Returns:
- the values of this Option as a List or null if there are no values
-
isRequired
public boolean isRequired()
Query to see if this Option is mandatory- Returns:
- boolean flag indicating whether this Option is mandatory
-
setRequired
public void setRequired(boolean required)
Sets whether this Option is mandatory.- Parameters:
required- specifies whether this Option is mandatory
-
getDescription
public java.lang.String getDescription()
Retrieve the self-documenting description of this Option- Returns:
- the string description of this option
-
setDescription
public void setDescription(java.lang.String description)
Sets the self-documenting description of this Option- Parameters:
description- the description of this option
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
clone
public Option clone()
A rather odd clone method - due to incorrect code in 1.0 it is public and in 1.1 rather than throwing a CloneNotSupportedException it throws a RuntimeException so as to maintain backwards compat at the API level. After calling this method, it is very likely you will want to call clearValues().- Overrides:
clonein classjava.lang.Object- Returns:
- a clone of this Option instance
- Throws:
java.lang.RuntimeException- if aCloneNotSupportedExceptionhas been thrown bysuper.clone()
-
toString
public java.lang.String toString()
Dump state, suitable for debugging.- Overrides:
toStringin classjava.lang.Object- Returns:
- the stringified form of this object
-
builder
public static Option.Builder builder()
Returns aOption.Builderto create anOptionusing descriptive methods.- Returns:
- a new
Option.Builderinstance
-
builder
public static Option.Builder builder(java.lang.String name)
Returns aOption.Builderto create anOptionusing descriptive methods.- Parameters:
name- short representation of the option- Returns:
- a new
Option.Builderinstance - Throws:
java.lang.IllegalArgumentException- if there are any non valid Option characters inname
-
-