com.ibm.task.api

Interface AttributeInfo

All Superinterfaces:
java.io.Serializable
All known subinterfaces:
AttributeMetaData

  1. public interface AttributeInfo
  2. extends java.io.Serializable
Provides information about an attribute of a query table.

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
  1. static
  2. java.lang.String
COPYRIGHT

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getName()
Returns the name of the attribute.
  1. java.lang.String
getSourceAttributeName()
Returns the name of the source attribute.
  1. java.lang.String
getSourceQueryTableIdentifier()
Returns the identifier of the query table that is the source of the attribute.
  1. java.lang.String
getSourceQueryTableName()
Returns the name of the query table that is the source of the attribute.
  1. AttributeType
getType()
Returns the type of the attribute.
  1. boolean
isArray()
States whether the attribute is an array.

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

Method Detail

getName

  1. java.lang.String getName()
Returns the name of the attribute.
Returns:
The name of the attribute.

getType

  1. AttributeType getType()
Returns the type of the attribute.
Returns:
The type of the attribute.

isArray

  1. 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

  1. java.lang.String getSourceAttributeName( )
Returns the name of the source attribute.
Returns:
The name of the source attribute.

getSourceQueryTableName

  1. 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

  1. 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.