|
Oracle Fusion Middleware Workflow Services Java API Reference for Oracle SOA Suite 11g Release 1 (11.1.1) E10660-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.bpel.services.workflow.repos.Column
public class Column
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.
Constructor Summary | |
---|---|
Column(java.lang.String name, int type, oracle.bpel.services.workflow.repos.Table table) Constructor to create a Column object to represent a column in a Workflow services table. |
|
Column(java.lang.String name, java.lang.String alias, int type, boolean translatable, oracle.bpel.services.workflow.repos.Table table) |
|
Column(java.lang.String name, java.lang.String alias, int type, oracle.bpel.services.workflow.repos.Table table) Constructor to create a Column object to represent a column in a Workflow services table. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object column) Object comparision |
java.lang.String |
getAlias() Returns the column alias |
static Column |
getColumn(java.lang.String columnName) getColumn returns the Column object created in TableConstants for the specified columnName using a lookup of the static map. |
static Column |
getColumn(java.lang.String tableName, java.lang.String columnName) Returns the column object for the specified table and column names |
java.lang.String |
getName() Returns the name of the column |
oracle.bpel.services.workflow.repos.Table |
getTable() Returns the table that this column object belongs to. |
java.lang.String |
getTableAlias() Returns the alias for the table that this column belongs to. |
java.lang.String |
getTableName() Returns the name of the table this column belongs to |
int |
getType() returns the data type of the column |
boolean |
isStringType() |
boolean |
isTranslatable() Returns the value of the translatable flag. |
void |
setTranslatable(boolean mTranslatable) Sets the value of the translatable flag. |
java.lang.String |
toString() returns the string representation of the column name. |
java.lang.String |
toString(boolean useAlias) returns the string representation of the column name. |
Methods inherited from class java.lang.Object |
---|
getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Column(java.lang.String name, int type, oracle.bpel.services.workflow.repos.Table table)
name
- name of the columntype
- Data type of the column. String, boolean, integer, etc.table
- The table that this column is presetnpublic Column(java.lang.String name, java.lang.String alias, int type, oracle.bpel.services.workflow.repos.Table table)
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 presetnpublic Column(java.lang.String name, java.lang.String alias, int type, boolean translatable, oracle.bpel.services.workflow.repos.Table table)
Method Detail |
---|
public static Column getColumn(java.lang.String columnName)
columnName
- name of the column in WFTASK tablepublic static Column getColumn(java.lang.String tableName, java.lang.String columnName)
tableName
- name of the tablecolumnName
- name of the columnpublic java.lang.String getName()
public int getType()
public boolean isStringType()
public java.lang.String getTableName()
public java.lang.String getAlias()
public java.lang.String getTableAlias()
public oracle.bpel.services.workflow.repos.Table getTable()
public boolean equals(java.lang.Object column)
equals
in class java.lang.Object
public java.lang.String toString(boolean useAlias)
useAlias
- use the alias given or not.public java.lang.String toString()
toString
in class java.lang.Object
useAlias
- use the alias given or not.public void setTranslatable(boolean mTranslatable)
mTranslatable
- The boolean value to set the translation flag.public boolean isTranslatable()
|
Oracle Fusion Middleware Workflow Services Java API Reference for Oracle SOA Suite 11g Release 1 (11.1.1) E10660-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |