Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/DBType.java')
-rw-r--r--plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/DBType.java144
1 files changed, 0 insertions, 144 deletions
diff --git a/plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/DBType.java b/plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/DBType.java
deleted file mode 100644
index 730dffc8b4..0000000000
--- a/plugins/org.eclipse.net4j.db/src/org/eclipse/net4j/db/DBType.java
+++ /dev/null
@@ -1,144 +0,0 @@
-/***************************************************************************
- * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Eike Stepper - initial API and implementation
- **************************************************************************/
-package org.eclipse.net4j.db;
-
-/**
- * @author Eike Stepper
- */
-public enum DBType
-{
- BOOLEAN(16), //
- BIT(-7), //
- TINYINT(-6), //
- SMALLINT(5), //
- INTEGER(4), //
- BIGINT(-5), //
- FLOAT(6), //
- REAL(7), //
- DOUBLE(8), //
- NUMERIC(2), //
- DECIMAL(3), //
- CHAR(1), //
- VARCHAR(12), //
- LONGVARCHAR(-1, "LONG VARCHAR"), //
- DATE(91), //
- TIME(92), //
- TIMESTAMP(93), //
- BINARY(-2)
- {
- @Override
- public void appendValue(StringBuilder builder, Object value)
- {
- throw new UnsupportedOperationException();
- }
- }, //
- VARBINARY(-3)
- {
- @Override
- public void appendValue(StringBuilder builder, Object value)
- {
- throw new UnsupportedOperationException();
- }
- }, //
- LONGVARBINARY(-4, "LONG VARBINARY")
- {
- @Override
- public void appendValue(StringBuilder builder, Object value)
- {
- throw new UnsupportedOperationException();
- }
- }, //
- BLOB(2004)
- {
- @Override
- public void appendValue(StringBuilder builder, Object value)
- {
- throw new UnsupportedOperationException();
- }
- }, //
- CLOB(2005)
- {
- @Override
- public void appendValue(StringBuilder builder, Object value)
- {
- throw new UnsupportedOperationException();
- }
- }; //
-
- private int code;
-
- private String keyword;
-
- private DBType(int code, String keyword)
- {
- this.code = code;
- this.keyword = keyword;
- }
-
- private DBType(int code)
- {
- this(code, null);
- }
-
- public int getCode()
- {
- return code;
- }
-
- public String getKeyword()
- {
- return keyword == null ? super.toString() : keyword;
- }
-
- @Override
- public String toString()
- {
- return getKeyword();
- }
-
- public void appendValue(StringBuilder builder, Object value)
- {
- if (value == null)
- {
- builder.append("NULL");
- }
- else
- {
- if (value instanceof String || value instanceof Character)
- {
- builder.append("'");
- if (value instanceof String)
- {
- String str = (String)value;
- for (int i = 0; i < str.length(); i++)
- {
- char c = str.charAt(i);
- builder.append(c);
- if (c == '\'')
- {
- builder.append(c);
- }
- }
- }
- else
- {
- builder.append(value);
- }
-
- builder.append("'");
- }
- else
- {
- builder.append(value);
- }
- }
- }
-}

Back to the top