com.ibm.task.api
Interface AttributeInfo
All Superinterfaces:
java.io.Serializable
All known subinterfaces:
- public interface AttributeInfo
- extends java.io.Serializable
An attribute is part of an entity or row which is returned as a result of a query against a query table.
Since:
7.0
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getName()
Returns the name of the attribute.
|
|
getSourceAttributeName()
Returns the name of the source attribute.
|
|
getSourceQueryTableIdentifier()
Returns the identifier of the query table that is the source of the attribute.
|
|
getSourceQueryTableName()
Returns the name of the query table that is the source of the attribute.
|
getType()
Returns the type of the attribute.
|
|
|
isArray()
States whether the attribute is an array.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
Method Detail
getName
- java.lang.String getName()
Returns the name of the attribute.
Returns:
The name of the attribute.
getType
- AttributeType getType()
Returns the type of the attribute.
Returns:
The type of the attribute.
isArray
- boolean isArray()
States whether the attribute is an array.
Returns:
boolean - True states that the attribute is an array of values. False states
that the attribute is no array.
getSourceAttributeName
- java.lang.String getSourceAttributeName( )
Returns the name of the source attribute.
Returns:
The name of the source attribute.
getSourceQueryTableName
- java.lang.String getSourceQueryTableName( )
Returns the name of the query table that is the source of the attribute.
Returns:
The name of the source query table.
getSourceQueryTableIdentifier
- java.lang.String getSourceQueryTableIdentifier( )
Returns the identifier of the query table that is the source of the attribute.
Returns:
The identifier of the source query table.