com.lowagie.toolbox.arguments
public class OptionArgument.Entry extends Object
Modifier and Type | Field and Description |
---|---|
private Object |
description
Describes the option.
|
private Object |
value
Holds the actual value of the option.
|
Constructor and Description |
---|
OptionArgument.Entry(Object value)
Constructs an entry.
|
OptionArgument.Entry(Object description,
Object value)
Constructs an entry.
|
Modifier and Type | Method and Description |
---|---|
Object |
getDescription() |
Object |
getValue() |
String |
getValueToString()
Gets the value of the String.
|
void |
setDescription(Object description) |
void |
setValue(Object value) |
String |
toString()
String representation of the Entry.
|
private Object description
private Object value
public OptionArgument.Entry(Object value)
value
- the value of the entry (that will be identical to the description)public String toString()
public String getValueToString()
public Object getDescription()
public void setDescription(Object description)
description
- The description to set.public Object getValue()
public void setValue(Object value)
value
- The value to set.