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

📄 dssconstants.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.impl.drda.DssConstants   Copyright 2001, 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.drda;/**	This class defines DSS constants that are shared in the classes implementing	the DRDA protocol.*/class DssConstants{  protected static final int MAX_DSS_LENGTH = 32767;  // Registered DSS identifier indicating DDM data (xD0 for DDM data).  protected static final int DSS_ID = 0xD0;  // DSS chaining bit.  protected static final int DSS_NOCHAIN = 0x00;  protected static final int DSSCHAIN = 0x40;  // DSS chaining bit for continuation on error  protected static final int DSSCHAIN_ERROR_CONTINUE = 0x20;  // DSS chaining bit where next DSS has same correlation ID.  protected static final int DSSCHAIN_SAME_ID = 0x50;  // DSS formatter for an OBJDSS.  protected static final int DSSFMT_OBJDSS = 0x03;  // DSS formatter for an RPYDSS.  protected static final int DSSFMT_RPYDSS = 0x02;  // DSSformatter for an RQSDSS.  protected static final int DSSFMT_RQSDSS = 0x01;  // DSS request correlation id unknown value  protected static final int CORRELATION_ID_UNKNOWN = -1;  // DSS length continuation bit  protected static final int CONTINUATION_BIT = 0x8000; // Registered SNA GDS identifier indicating DDM data (xD0 for DDM data).  static final int GDS_ID = 0xD0;  // GDS chaining bits.  static final int GDSCHAIN = 0x40;  // GDS chaining bits where next DSS has different correlation ID.  static final int GDSCHAIN_SAME_ID = 0x50;  // GDS formatter for an OBJDSS.  static final int GDSFMT_OBJDSS = 0x03;  // GDS formatter for an RPYDSS.  static final int GDSFMT_RPYDSS = 0x02;  // GDS formatter for an RQSDSS.  static final int GDSFMT_RQSDSS = 0x01;  // hide the default constructor  private DssConstants () {}}

⌨️ 快捷键说明

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