亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tablename.java

?? derby database source code.good for you.
?? JAVA
字號:
/*   Derby - Class org.apache.derby.impl.sql.compile.TableName   Copyright 1997, 2004 The Apache Software Foundation or its licensors, as applicable.   Licensed under the Apache License, Version 2.0 (the "License");   you may not use this file except in compliance with the License.   You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License. */package	org.apache.derby.impl.sql.compile;import org.apache.derby.iapi.sql.dictionary.DataDictionary;import org.apache.derby.iapi.sql.dictionary.SchemaDescriptor;import org.apache.derby.iapi.sql.conn.LanguageConnectionContext;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.reference.Property;import org.apache.derby.iapi.reference.SQLState;/** * A TableName represents a qualified name, externally represented as a schema name * and an object name separated by a dot. This class is mis-named: it is used to * represent the names of other object types in addition to tables. * * @author Jerry Brenner */public class TableName extends QueryTreeNode{	/* Both schemaName and tableName can be null, however, if 	** tableName is null then schemaName must also be null.	*/	String	tableName;	String	schemaName;	private boolean hasSchema;	/*	** These fields are used to track the being and end	** offset of the token from which the TableName came.	** These are always set to legitimate values in the	** parser.  If a tableName has been generated elsewhere,	** they may not be set.  -1 means unset.	*/	private int		tokBeginOffset = -1;	private int		tokEndOffset = -1;	/**	 * Initializer for when you have both the table and schema names.	 *	 * @param schemaName	The name of the schema being referenced	 * @param tableName		The name of the table being referenced	 	 */	public void init(Object schemaName, Object tableName)	{		hasSchema = schemaName != null;		this.schemaName = (String) schemaName;		this.tableName = (String) tableName;	}	/**	 * Initializer for when you have both the table and schema names.	 *	 * @param schemaName	The name of the schema being referenced	 * @param tableName		The name of the table being referenced	 	 * @param tokBeginOffset begin position of token for the table name 	 *					identifier from parser.  pass in -1 if unknown	 * @param tokEndOffset	end position of token for the table name 	 *					identifier from parser.  pass in -1 if unknown	 */	public void init	(		Object schemaName, 		Object tableName, 		Object	tokBeginOffset,		Object	tokEndOffset	)	{		init(schemaName, tableName);		this.tokBeginOffset = ((Integer) tokBeginOffset).intValue();		this.tokEndOffset = ((Integer) tokEndOffset).intValue();	}	/**	 * Get the table name (without the schema name).	 *	 * @return Table name as a String	 */	public String getTableName()	{		return tableName;	}	/**	 * Return true if this instance was initialized with not null schemaName.	 *	 * @return true if this instance was initialized with not null schemaName	 */		public boolean hasSchema(){		return hasSchema;	}	/**	 * Get the schema name.	 *	 * @return Schema name as a String	 */	public String getSchemaName()	{		return schemaName;	}	/**	 * Get the begin offset of the parser token for the table name	 * Will only be set when the TableName was generated by the	 * parser.	 *	 * @return the begin offset of the token.  -1 means unknown	 */	public int getTokenBeginOffset()	{		return tokBeginOffset;	}	/**	 * Get the end offset of the parser token for the table name.	 * Will only be set when the TableName was generated by the	 * parser.	 *	 * @return the end offset of the token.  -1 means unknown	 */	public int getTokenEndOffset()	{		return tokEndOffset;	}	/**	 * Set the schema name.	 *	 * @param schemaName	 Schema name as a String	 *	 * @return Nothing.	 */	public void setSchemaName(String schemaName)	{		this.schemaName = schemaName;	}	/**	 * Get the full table name (with the schema name, if explicitly	 * specified).	 *	 * @return Full table name as a String	 */	public String getFullTableName()	{		if (schemaName != null)			return schemaName + "." + tableName;		else			return tableName;	}	/**	 * Convert this object to a String.  See comments in QueryTreeNode.java	 * for how this should be done for tree printing.	 *	 * @return	This object as a String	 */	public String toString()	{		if (hasSchema)			return getFullTableName();		else			return tableName;	}	/**	 * 2 TableNames are equal if their both their schemaNames and tableNames are	 * equal, or if this node's full table name is null (which happens when a	 * SELECT * is expanded).  Also, only check table names if the schema	 * name(s) are null.	 *	 * @param otherTableName	The other TableName.	 *	 * @return boolean		Whether or not the 2 TableNames are equal.	 */	public boolean equals(TableName otherTableName)	{        if( otherTableName == null)            return false;        		String fullTableName = getFullTableName();		if (fullTableName == null)		{			return true;		}		else if ((schemaName == null) || 				 (otherTableName.getSchemaName() == null))		{			return tableName.equals(otherTableName.getTableName());		}		else		{			return fullTableName.equals(otherTableName.getFullTableName());		}	}	/**	 * 2 TableNames are equal if their both their schemaNames and tableNames are	 * equal, or if this node's full table name is null (which happens when a	 * SELECT * is expanded).  Also, only check table names if the schema	 * name(s) are null.	 *	 * @param otherSchemaName	The other TableName.	 * @param otherTableName	The other TableName.	 *	 * @return boolean		Whether or not the 2 TableNames are equal.	 */	public boolean equals(String otherSchemaName, String otherTableName)	{		String fullTableName = getFullTableName();		if (fullTableName == null)		{			return true;		}		else if ((schemaName == null) || 				 (otherSchemaName == null))		{			return tableName.equals(otherTableName);		}		else		{			return fullTableName.equals(otherSchemaName+"."+otherTableName);		}	}	///////////////////////////////////////////////////////////////////////	//	//	BIND METHODS	//	///////////////////////////////////////////////////////////////////////	/**	  *	Bind this TableName. This means filling in the schema name if it	  *	wasn't specified.	  *	  *	@param	dataDictionary	Data dictionary to bind against.	  *	  *	@exception StandardException		Thrown on error	  */	public void	bind( DataDictionary	dataDictionary )		                       throws StandardException	{        schemaName = getSchemaDescriptor(schemaName).getSchemaName();	}	///////////////////////////////////////////////////////////////////////	//	//	OBJECT INTERFACE	//	///////////////////////////////////////////////////////////////////////	/**	  *	Returns a hashcode for this tableName. This allows us to use TableNames	  *	as keys in hash lists.	  *	  *	@return	hashcode for this tablename	  */	public	int	hashCode()	{		return	getFullTableName().hashCode();	}	/**	  *	Compares two TableNames. Needed for hashing logic to work.	  *	  *	@param	other	other tableName	  */	public	boolean	equals( Object other )	{		if ( !( other instanceof TableName ) ) { return false; }		TableName		that = (TableName) other;		return	this.getFullTableName().equals( that.getFullTableName() );	}}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品亚洲乱码伦伦中文| 在线亚洲精品福利网址导航| 日韩一区二区三区四区五区六区| 丝瓜av网站精品一区二区 | 亚洲欧美激情一区二区| 99免费精品视频| 一区二区三区 在线观看视频| 欧美午夜在线一二页| 天天av天天翘天天综合网| 91精品国产91久久久久久最新毛片| 久久精品国产成人一区二区三区| 精品福利一二区| 成人app在线观看| 亚洲午夜久久久久久久久久久| 欧美三级日韩三级| 精品一区二区免费在线观看| 亚洲国产精品av| 91福利视频在线| 精品在线播放午夜| 中文字幕在线观看不卡视频| 欧美日韩高清在线播放| 国产乱码精品1区2区3区| 一区二区三区欧美久久| 欧美变态口味重另类| 成人动漫一区二区在线| 亚州成人在线电影| 中文字幕欧美日本乱码一线二线| 欧美性三三影院| 国产一区二区精品在线观看| 亚洲午夜精品17c| 日本一区二区三区视频视频| 正在播放一区二区| 99精品在线观看视频| 久久精品噜噜噜成人88aⅴ| 亚洲色图另类专区| 久久综合中文字幕| 欧美日韩不卡视频| 99久久精品国产一区二区三区 | 全国精品久久少妇| 中文字幕日韩一区| 久久在线免费观看| 91精品国产一区二区| 91久久国产综合久久| 国产精品一区在线观看你懂的| 亚洲成人免费在线观看| 综合网在线视频| 精品国产欧美一区二区| 欧美日韩免费视频| 91网站在线播放| 国产精品99久久久久久宅男| 免费不卡在线视频| 亚洲午夜激情网站| 一区二区欧美国产| 亚洲女性喷水在线观看一区| 日本一区二区在线不卡| 2020国产精品| 欧美精品一区二区三区蜜臀| 欧美三级电影在线观看| 91免费观看视频| eeuss国产一区二区三区| 国产一区二区三区久久久 | 欧美色区777第一页| 91在线视频网址| 成人av免费在线| 北条麻妃一区二区三区| av亚洲精华国产精华精| 丁香激情综合五月| 国产精品一区专区| 国产成人免费在线| 懂色中文一区二区在线播放| 国产精品99久久久久久久女警| 老司机午夜精品99久久| 轻轻草成人在线| 免费视频一区二区| 狠狠色狠狠色综合日日91app| 韩国毛片一区二区三区| 国产乱码精品一品二品| 国产成人免费网站| 成人av在线看| 99久精品国产| 欧美色网站导航| 91麻豆精品国产自产在线| 欧美日韩成人在线| 日韩精品最新网址| 欧美xxxxx牲另类人与| 2023国产精品视频| 国产精品国产三级国产三级人妇| 国产精品白丝在线| 亚洲人吸女人奶水| 亚洲自拍偷拍欧美| 日本不卡123| 国内精品久久久久影院色| 国产传媒久久文化传媒| 99久久婷婷国产综合精品| 91高清视频免费看| 在线成人av影院| 亚洲精品一区二区三区精华液| 欧美激情一区二区三区| 亚洲视频小说图片| 视频一区国产视频| 国产成人福利片| 色天天综合久久久久综合片| 91精品国产色综合久久| 国产欧美久久久精品影院| 中文字幕日韩一区| 日韩va欧美va亚洲va久久| 国产一区二区三区观看| 色婷婷综合久久久久中文| 欧美视频日韩视频| 久久久久久久久免费| 亚洲人吸女人奶水| 久草中文综合在线| 91首页免费视频| 亚洲欧洲在线观看av| 亚洲一区自拍偷拍| 国产在线一区观看| 在线亚洲高清视频| 久久久久久99精品| 香蕉影视欧美成人| 成人午夜精品在线| 日韩视频一区二区在线观看| 国产精品色婷婷| 日本网站在线观看一区二区三区| 成人激情免费网站| 欧美一级日韩一级| 亚洲人成人一区二区在线观看| 视频在线在亚洲| aaa国产一区| 久久中文字幕电影| 婷婷丁香久久五月婷婷| 99久久伊人精品| 26uuu精品一区二区| 亚洲777理论| 99久久免费精品| 国产女同互慰高潮91漫画| 久久精品国产亚洲5555| 在线观看日韩一区| 国产精品国产三级国产三级人妇| 久久草av在线| 欧美夫妻性生活| 亚洲影院在线观看| 91日韩精品一区| 欧美激情一区二区三区蜜桃视频 | 国产欧美一区在线| 欧美亚洲另类激情小说| 国产精品麻豆一区二区 | 日本伊人色综合网| 欧美亚洲日本一区| 亚洲欧美日韩国产综合| kk眼镜猥琐国模调教系列一区二区| 日韩欧美国产一二三区| 午夜久久福利影院| 欧美性大战久久久久久久 | 欧美日本在线视频| 亚洲一区二区三区精品在线| www.久久精品| 欧美极品少妇xxxxⅹ高跟鞋| 国产一区二区在线免费观看| 91精品国产综合久久久蜜臀图片| 亚洲午夜电影在线| 在线免费不卡电影| 亚洲精品成人在线| 在线观看日韩av先锋影音电影院| 国产精品久久久久久久第一福利| 国产99久久久国产精品潘金网站| 欧美成人午夜电影| 激情文学综合丁香| 久久天天做天天爱综合色| 国产九九视频一区二区三区| 337p日本欧洲亚洲大胆色噜噜| 久久精品国产成人一区二区三区 | 精品美女被调教视频大全网站| 日韩电影在线一区| 欧美一区二区高清| 九九视频精品免费| 久久久久久日产精品| 国产成人精品在线看| 亚洲欧美自拍偷拍色图| 色婷婷综合在线| eeuss鲁一区二区三区| 亚洲日本在线看| 91福利在线观看| 美女视频一区二区| 久久精品无码一区二区三区| 粉嫩aⅴ一区二区三区四区五区| ...xxx性欧美| 欧美日韩精品欧美日韩精品| 美女网站视频久久| 国产精品美女久久久久久久久久久| 91丨九色丨蝌蚪丨老版| 无码av中文一区二区三区桃花岛| 精品国产凹凸成av人网站| 国产精品一区在线观看你懂的| 最新国产の精品合集bt伙计| 欧美精品高清视频| 国产乱人伦偷精品视频免下载| 国产精品第一页第二页第三页| 欧美午夜寂寞影院| 国产老妇另类xxxxx| 一区二区日韩av|