Constructor and Description |
---|
OptionImpl(QualifiedName qualifiedName,
Object value)
Constructs an OptionImpl from a QualifiedaName and a value.
|
OptionImpl(String qualifiedName,
Object value)
Constructs an OptionImpl from the String representation of
a QualifiedName and a value.
|
OptionImpl(String namespace,
String name,
Object value)
Constructs an optionImpl from a namespace, a name and a value.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
QualifiedName |
getQualifiedName()
Returns the qualified name of the option.
|
Object |
getValue()
Retursn the value of the option.
|
int |
hashCode() |
String |
toString()
Creates as String representation of this Object for
debugging purposes.
|
public OptionImpl(String namespace, String name, Object value)
namespace
- the namespace of the option, may be null.name
- the name of the option, must not be empty.value
- the value of the option, may be null.public OptionImpl(String qualifiedName, Object value)
qualifiedName
- The String representation of the qualified name
of the option, in the form context:name or name.
(in the latter case, context is null).value
- the value of the option, may be null.IllegalArgumentException
- if qualifiedName is not a legal
QualifiedName.public OptionImpl(QualifiedName qualifiedName, Object value)
qualifiedName
- A qualifiedName containing the context
and the name of the option.value
- the value of the option, may be null.public QualifiedName getQualifiedName()
getQualifiedName
in interface Option
public Object getValue()
public String toString()
Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.