comparednode.java
来自「导出ORACLE数据库对象DDL语句的程序」· Java 代码 · 共 25 行
JAVA
25 行
package com.icbcsdc.ddlexp.pub.xml.nodeinfo;
import java.util.Hashtable;
/**
* @author zhangyc
*
* To change this generated comment edit the template variable "typecomment":
* Window>Preferences>Java>Templates.
* To enable and disable the creation of type comments go to
* Window>Preferences>Java>Code Generation.
*/
public interface ComparedNode {
public static final byte NO_COMPARED=0; //未曾比较
public static final byte SRC_EXIST_DST_NULL=1; //数据对象在源数据库中存在,在目标数据库中不存在
public static final byte SRC_NULL_DST_EXIST=2; //数据对象在源数据库中不存在,在目标数据库中存在
public static final byte SRC_DST_SAME=3; //数据对象在源数据库中和目标数据库中相同
public static final byte SRC_DST_DIFF=4; //数据对象在源数据库中和目标数据库中不同
public static final byte COMPARED=5; //对象已经比较,但是不知比较结果
public void refreshChangedProperties() throws Exception;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?