Class Column
java.lang.Object
oracle.bpel.services.workflow.repos.Column
- All Implemented Interfaces:
Serializable
,Comparable
This class represents a column in the table that is related to an
attribute of the task object. This is an internal class and objects
of this type are available as constants, such as TableConstants.WFTASK_STATE_COLUMN.
Users should be using these objects to query tasks.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor to create a Column object to represent a column in a Workflow services table.Column
(String name, String alias, int type, boolean translatable, boolean searchable, oracle.bpel.services.workflow.repos.Table table) Constructor to create a Column object to represent a column in a Workflow services table. -
Method Summary
Modifier and TypeMethodDescriptionint
boolean
Object comparisiongetAlias()
Returns the column aliasstatic Column
getColumn returns the Column object created in TableConstants for the specified columnName using a lookup of the static map.static Column
Returns the column object for the specified table and column namesgetName()
Returns the name of the columnoracle.bpel.services.workflow.repos.Table
getTable()
Returns the table that this column object belongs to.Returns the alias for the table that this column belongs to.Returns the name of the table this column belongs toint
getType()
returns the data type of the columnboolean
Returns the value of the searchable flag.boolean
boolean
Returns the value of the translatable flag.void
setTranslatable
(boolean mTranslatable) Sets the value of the translatable flag.toString()
returns the string representation of the column name.toString
(boolean useAlias) returns the string representation of the column name.
-
Constructor Details
-
Column
Constructor to create a Column object to represent a column in a Workflow services table.- Parameters:
name
- name of the columntype
- Data type of the column. String, boolean, integer, etc.table
- The table that this column is presetn
-
Column
Constructor to create a Column object to represent a column in a Workflow services table.- Parameters:
name
- name of the columnalias
- alias of the columntype
- Data type of the column. String, boolean, integer, etc.table
- The table that this column is presetn
-
Column
-
-
Method Details
-
getColumn
getColumn returns the Column object created in TableConstants for the specified columnName using a lookup of the static map.- Parameters:
columnName
- name of the column in WFTASK table- Returns:
- Column object
-
getColumn
Returns the column object for the specified table and column names- Parameters:
tableName
- name of the tablecolumnName
- name of the column- Returns:
- Column object
-
getName
Returns the name of the column- Returns:
-
getType
public int getType()returns the data type of the column- Returns:
-
isStringType
public boolean isStringType() -
getTableName
Returns the name of the table this column belongs to- Returns:
-
getAlias
Returns the column alias- Returns:
-
getTableAlias
Returns the alias for the table that this column belongs to.- Returns:
-
getTable
public oracle.bpel.services.workflow.repos.Table getTable()Returns the table that this column object belongs to.- Returns:
-
equals
Object comparision -
compareTo
- Specified by:
compareTo
in interfaceComparable
-
toString
returns the string representation of the column name. Example. "wfn.columnname aliasname" if usealias is true or "wfn.columnname" if alias isfalse- Parameters:
useAlias
- use the alias given or not.- Returns:
-
toString
returns the string representation of the column name. Example. "wfn.columnname aliasname" -
setTranslatable
public void setTranslatable(boolean mTranslatable) Sets the value of the translatable flag. Setting this will indicate that the column value will not be derrived from the base table but from a related translation table- Parameters:
mTranslatable
- The boolean value to set the translation flag.
-
isTranslatable
public boolean isTranslatable()Returns the value of the translatable flag. When true, the value for the column should come from a MLS translation table and not the base table to which it is defined.- Returns:
- boolean
-
isSearchable
public boolean isSearchable()Returns the value of the searchable flag. When true, the column can be used in predicates for task query.- Returns:
- boolean
-