Revision 30231 branches/v2_0_0_prep/extensions/org.gvsig.oracle/src/org/gvsig/fmap/dal/store/oracle/OracleValues.java

View differences:

OracleValues.java
1
package org.gvsig.fmap.dal.store.oracle;
1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
4
 * of the Valencian Government (CIT)
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 */
2 22

  
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2009 Prodevelop S.L. main development
26
 */
3 27

  
28
package org.gvsig.fmap.dal.store.oracle;
4 29

  
30
/**
31
 * Oracle static values
32
 * 
33
 * @author jldominguez, vsanjaime
34
 * 
35
 */
5 36
public class OracleValues {
6 37

  
7 38
	public static int FETCH_SIZE = 15000;
......
15 46

  
16 47
	public static final String ALL_ORACLE_GEOMETADATA_VIEW = "ALL_SDO_GEOM_METADATA";
17 48
	public static final String USER_ORACLE_GEOMETADATA_VIEW = "USER_SDO_GEOM_METADATA";
49
	public static final String USER_ORACLE_GEOMETADATA_VIEW_TABLE_NAME = "TABLE_NAME";
50
	public static final String USER_ORACLE_GEOMETADATA_VIEW_COLUMN_NAME = "COLUMN_NAME";
18 51

  
19 52
	public static final String ORACLE_EPSG_TABLE_NAME = "ORA_EPSG";
20 53
	public static final String ORACLE_EPSG_FILE_NAME = "ORA_EPSG.DBF";
......
41 74
	public static final String OraGeometry_GTYPE_POINT = "Point";
42 75
	public static final String OraGeometry_GTYPE_POLYGON = "Polygon";
43 76
	public static final String OraGeometry_GTYPE_GEOMETRY = "MDSYS.SDO_GEOMETRY";
44
	
45
	
46
	//----------------------------------------------------
77

  
78
	// ----------------------------------------------------
47 79
	public static double FLATNESS = 0.8;
48 80
	public static final int ORACLE_GTYPE_UNKNOWN = 0;
49 81
	public static final int ORACLE_GTYPE_POINT = 1;
......
57 89
	public static final int ORACLE_GTYPE_COMPLEX_VOIDED_POLYON = 3;
58 90
	public static final int ORACLE_GTYPE_COMPLEX_COMPOUND_LINE = 4;
59 91
	public static final int ORACLE_GTYPE_COMPLEX_COMPOUND_POLYON = 5;
60
	
61 92

  
62 93
}

Also available in: Unified diff