⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dependable.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.catalog.Dependable   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.catalog;/**	  * A Dependable is an in-memory representation of an object managed  *	by the Dependency System.  *   * There are two kinds of Dependables:  * Providers and Dependents. Dependents depend on Providers and  *	are responsible for executing compensating logic when their  *	Providers change.  * <P>  * The fields represent the known Dependables.  * <P>  * Persistent dependencies (those between database objects) are  * stored in SYS.SYSDEPENDS.  *  * @see org.apache.derby.catalog.DependableFinder  */public interface Dependable{	/*	  *	Universe of known Dependables. 	  */	public static final String ALIAS						= "Alias";	public static final String CONGLOMERATE					= "Conglomerate";	public static final String CONSTRAINT					= "Constraint";	public static final String DEFAULT						= "Default";	public static final String HEAP							= "Heap";	public static final String INDEX						= "Index";	public static final String PREPARED_STATEMENT 			= "PreparedStatement";	public static final String FILE                         = "File";	public static final String STORED_PREPARED_STATEMENT	= "StoredPreparedStatement";	public static final String TABLE						= "Table";	public static final String COLUMNS_IN_TABLE				= "ColumnsInTable";	public static final String TRIGGER						= "Trigger";	public static final String VIEW							= "View";	public static final String SCHEMA						= "Schema";	/**	  *	Get an object which can be written to disk and which,	  *	when read from disk, will find or reconstruct this in-memory	  * Dependable.	  *	  *	@return		A Finder object that can be written to disk if this is a	  *					Persistent Dependable.	  *				Null if this is not a persistent dependable.	  */	public	DependableFinder	getDependableFinder();	/**	  *	Get the name of this Dependable OBJECT. This is useful	  *	for diagnostic messages.	  *	  *	@return	Name of Dependable OBJECT.	  */	public	String	getObjectName();	/**	  *	Get the UUID of this Dependable OBJECT.	  *	  *	@return	UUID of this OBJECT.	  */	public	UUID	getObjectID();	/**	  *	Return whether or not this Dependable is persistent. Persistent	  *	dependencies are stored in SYS.SYSDEPENDS.	  *	  *	@return	true if this Dependable is persistent.	  */	public	boolean	isPersistent();	/**	  * Get the unique class id for the Dependable.	  *	Every Dependable belongs to a class of Dependables. 	  *	  *	@return	type of this Dependable.	  */	public	String	getClassType();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -