📄 columnidentifier.html
字号:
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="ColumnIdentifier(java.lang.String)"><!-- --></A><H3>
ColumnIdentifier</H3>
<PRE>
public <B>ColumnIdentifier</B>(<A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> column)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>column</CODE> - the local name of my column</DL>
</DD>
</DL>
<HR>
<A NAME="ColumnIdentifier(org.axiondb.TableIdentifier, java.lang.String)"><!-- --></A><H3>
ColumnIdentifier</H3>
<PRE>
public <B>ColumnIdentifier</B>(<A HREF="../../org/axiondb/TableIdentifier.html">TableIdentifier</A> table, <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> columnName)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>table</CODE> - my table, which may be <code>null</code><DD><CODE>column</CODE> - my column</DL>
</DD>
</DL>
<HR>
<A NAME="ColumnIdentifier(org.axiondb.TableIdentifier, java.lang.String, java.lang.String)"><!-- --></A><H3>
ColumnIdentifier</H3>
<PRE>
public <B>ColumnIdentifier</B>(<A HREF="../../org/axiondb/TableIdentifier.html">TableIdentifier</A> table, <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> columnName, <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> columnAlias)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>table</CODE> - my table, which may be <code>null</code><DD><CODE>column</CODE> - my column<DD><CODE>columnAlias</CODE> - the alias for my column, which may be <code>null</code></DL>
</DD>
</DL>
<HR>
<A NAME="ColumnIdentifier(org.axiondb.TableIdentifier, java.lang.String, java.lang.String, org.axiondb.DataType)"><!-- --></A><H3>
ColumnIdentifier</H3>
<PRE>
public <B>ColumnIdentifier</B>(<A HREF="../../org/axiondb/TableIdentifier.html">TableIdentifier</A> table, <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> columnName, <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> columnAlias, <A HREF="../../org/axiondb/DataType.html">DataType</A> type)</PRE>
<DL>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>table</CODE> - my table, which may be <code>null</code><DD><CODE>column</CODE> - my column<DD><CODE>columnAlias</CODE> - the alias for my column, which may be <code>null</code><DD><CODE>type</CODE> - the <A HREF="../../org/axiondb/DataType.html"><CODE>DataType</CODE></A> of my column, which may be <code>null</code></DL>
</DD>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="evaluate(org.axiondb.RowDecorator)"><!-- --></A><H3>
evaluate</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html">Object</A> <B>evaluate</B>(<A HREF="../../org/axiondb/RowDecorator.html">RowDecorator</A> row) throws <A HREF="../../org/axiondb/AxionException.html">AxionException</A></PRE>
<DL>
<DD>Returns the value of the column I identify within the given <i>row</i>.<DD><DL>
<DT><B>Specified by: </B><DD><CODE><A HREF="../../org/axiondb/Selectable.html#evaluate(org.axiondb.RowDecorator)">evaluate</A></CODE> in interface <CODE><A HREF="../../org/axiondb/Selectable.html">Selectable</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="getLabel()"><!-- --></A><H3>
getLabel</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> <B>getLabel</B>()</PRE>
<DL>
<DD>Returns my column alias or name.<DD><DL>
<DT><B>Specified by: </B><DD><CODE><A HREF="../../org/axiondb/Selectable.html#getLabel()">getLabel</A></CODE> in interface <CODE><A HREF="../../org/axiondb/Selectable.html">Selectable</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="getName()"><!-- --></A><H3>
getName</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> <B>getName</B>()</PRE>
<DL>
<DD>Returns the name of my column, if any.<DD><DL>
<DT><B>Specified by: </B><DD><CODE><A HREF="../../org/axiondb/Selectable.html#getName()">getName</A></CODE> in interface <CODE><A HREF="../../org/axiondb/Selectable.html">Selectable</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="getAlias()"><!-- --></A><H3>
getAlias</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> <B>getAlias</B>()</PRE>
<DL>
<DD>Returns my column alias name, if any.<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="setTableIdentifier(org.axiondb.TableIdentifier)"><!-- --></A><H3>
setTableIdentifier</H3>
<PRE>
public void <B>setTableIdentifier</B>(<A HREF="../../org/axiondb/TableIdentifier.html">TableIdentifier</A> table)</PRE>
<DL>
<DD>Sets my table identifier, if any.<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getTableIdentifier()"><!-- --></A><H3>
getTableIdentifier</H3>
<PRE>
public <A HREF="../../org/axiondb/TableIdentifier.html">TableIdentifier</A> <B>getTableIdentifier</B>()</PRE>
<DL>
<DD>Returns my table identifier, if any.<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getTableName()"><!-- --></A><H3>
getTableName</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> <B>getTableName</B>()</PRE>
<DL>
<DD>Returns the name of my table or null. Unlike <code><A HREF="../../org/axiondb/ColumnIdentifier.html#getTableIdentifier()"><CODE>getTableIdentifier()</CODE></A>.<A HREF="../../org/axiondb/TableIdentifier.html#getTableName()"><CODE>getTableName()</CODE></A></code> this method will return <code>null</code> when I don't have a table identifier.<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getTableAlias()"><!-- --></A><H3>
getTableAlias</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> <B>getTableAlias</B>()</PRE>
<DL>
<DD>Returns the alias name of my table or null. Unlike <code><A HREF="../../org/axiondb/ColumnIdentifier.html#getTableIdentifier()"><CODE>getTableIdentifier()</CODE></A>.<A HREF="../../org/axiondb/TableIdentifier.html#getTableAlias()"><CODE>getTableAlias()</CODE></A></code> this method will return <code>null</code> when I don't have a table identifier.<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getDataType()"><!-- --></A><H3>
getDataType</H3>
<PRE>
public <A HREF="../../org/axiondb/DataType.html">DataType</A> <B>getDataType</B>()</PRE>
<DL>
<DD>Returns my <A HREF="../../org/axiondb/DataType.html"><CODE>DataType</CODE></A>, if any.<DD><DL>
<DT><B>Specified by: </B><DD><CODE><A HREF="../../org/axiondb/Selectable.html#getDataType()">getDataType</A></CODE> in interface <CODE><A HREF="../../org/axiondb/Selectable.html">Selectable</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="setDataType(org.axiondb.DataType)"><!-- --></A><H3>
setDataType</H3>
<PRE>
public void <B>setDataType</B>(<A HREF="../../org/axiondb/DataType.html">DataType</A> type)</PRE>
<DL>
<DD>Sets my <A HREF="../../org/axiondb/DataType.html"><CODE>DataType</CODE></A>, if any.<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="equals(java.lang.Object)"><!-- --></A><H3>
equals</H3>
<PRE>
public boolean <B>equals</B>(<A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html">Object</A> otherobject)</PRE>
<DL>
<DD>Returns <code>true</code> iff <i>otherobject</i> is a <A HREF="../../org/axiondb/ColumnIdentifier.html"><CODE>ColumnIdentifier</CODE></A> whose name, table identifier, and alias are equal to mine.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)">equals</A></CODE> in class <CODE><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html">Object</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="hashCode()"><!-- --></A><H3>
hashCode</H3>
<PRE>
public int <B>hashCode</B>()</PRE>
<DL>
<DD>Returns a hash code in keeping with the standard <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)"><CODE>equals</CODE></A>/<A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html#hashCode()"><CODE>hashCode</CODE></A> contract.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html#hashCode()">hashCode</A></CODE> in class <CODE><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html">Object</A></CODE></DL>
</DD>
</DL>
<HR>
<A NAME="toString()"><!-- --></A><H3>
toString</H3>
<PRE>
public <A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/String.html">String</A> <B>toString</B>()</PRE>
<DL>
<DD>Returns a <code>String</code> representation of me, suitable for debugging output.<DD><DL>
<DT><B>Overrides:</B><DD><CODE><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html#toString()">toString</A></CODE> in class <CODE><A HREF="http://java.sun.com/products/jdk/1.3/docs/api/java/lang/Object.html">Object</A></CODE></DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ColumnIdentifier.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../org/axiondb/Column.html"><B>PREV CLASS</B></A>
<A HREF="../../org/axiondb/ComparisonOperator.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="ColumnIdentifier.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright © 2002-2003 Axion Development Team. All Rights Reserved.
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -