xdev.io.XdevObjectIOConstants Maven / Gradle / Ivy
/*
* XDEV Application Framework - XDEV Application Framework
* Copyright © 2003 XDEV Software (https://xdev.software)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package xdev.io;
public interface XdevObjectIOConstants
{
public final static byte OTHER = -1;
public final static byte NULL = 0;
public final static byte BYTE = 1;
public final static byte SHORT = 2;
public final static byte INTEGER = 3;
public final static byte LONG = 4;
public final static byte FLOAT = 5;
public final static byte DOUBLE = 6;
public final static byte BOOLEAN = 7;
public final static byte CHAR = 8;
public final static byte STRING = 9;
public final static byte SQL_DATE = 10;
public final static byte SQL_TIME = 11;
public final static byte SQL_TIMESTAMP = 12;
public final static byte UTIL_DATE = 13;
public final static byte VERSION = 14;
public final static byte BLOB = 15;
public final static byte CLOB = 16;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy