public class Component
extends java.lang.Object
implements java.io.Serializable
Component
object.Constructor and Description |
---|
Component()
The default constructor.
|
Component(SplusObject value)
Constructs a
Component object using the specified value. |
Component(java.lang.String name,
SplusObject value)
Constructs a
Component object using the specified name and
value. |
Modifier and Type | Method and Description |
---|---|
SplusObject |
getInnerValue()
Retrieves the inner component value.
|
java.lang.String |
getName()
Retrieves the component name.
|
SplusObject |
getValue()
Retrieves the component value.
|
void |
setName(java.lang.String name)
Sets the component name.
|
void |
setValue(SplusObject value)
Sets the component value.
|
public Component(SplusObject value)
Component
object using the specified value.value
- The SplusObject
value.SplusObject
public Component(java.lang.String name, SplusObject value)
Component
object using the specified name and
value.name
- A string specifying the component name.value
- The SplusObject
value.SplusObject
public Component()
public java.lang.String getName()
public void setName(java.lang.String name)
name
- A string containing the component name.public SplusObject getValue()
SplusObject
specifying the component value.SplusObject
public void setValue(SplusObject value)
value
- An SplusObject
specifying the component value.SplusObject
public SplusObject getInnerValue()
getValue()
if value is not Generic
. If it is a
Generic
, the wrapping Generic
is stripped before being
returned. Use this instead of getValue()
when client code needs
to work regardless of whether TIBCO Enterprise Runtime for R or open-source R is used.