/projects/derby-10.9.1.0/db-derby-10.9.1.0-src/java/stubs/jdbc4/java/sql/Types.java
https://gitlab.com/essere.lab.public/qualitas.class-corpus · Java · 58 lines · 40 code · 2 blank · 16 comment · 0 complexity · cdb6bb7bec86253e2ff9af6d5c5d176b MD5 · raw file
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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 java.sql;
- public class Types
- {
- public static final int BIGINT = -5;
- public static final int BINARY = -2;
- public static final int BIT = -7;
- public static final int CHAR = 1;
- public static final int DATE = 91;
- public static final int DECIMAL = 3;
- public static final int DOUBLE = 8;
- public static final int FLOAT = 6;
- public static final int INTEGER = 4;
- public static final int LONGVARBINARY = -4;
- public static final int LONGVARCHAR = -1;
- public static final int NULL = 0;
- public static final int NUMERIC = 2;
- public static final int OTHER = 1111;
- public static final int REAL = 7;
- public static final int SMALLINT = 5;
- public static final int TIME = 92;
- public static final int TIMESTAMP = 93;
- public static final int TINYINT = -6;
- public static final int VARBINARY = -3;
- public static final int VARCHAR = 12;
- public static final int ARRAY = 2003;
- public static final int BLOB = 2004;
- public static final int BOOLEAN = 16;
- public static final int CLOB = 2005;
- public static final int DATALINK = 70;
- public static final int DISTINCT = 2001;
- public static final int JAVA_OBJECT = 2000;
- public static final int LONGNVARCHAR = -16;
- public static final int NCHAR = -15;
- public static final int NCLOB = 2011;
- public static final int NVARCHAR = -9;
- public static final int REF = 2006;
- public static final int ROWID = -8;
- public static final int SQLXML = 2009;
- public static final int STRUCT = 2002;
- }