/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000-2003 * Sleepycat Software. All rights reserved. * * $Id: DataType.java,v 1.2 2004/03/30 01:23:31 jtownsen Exp $ */ package com.sleepycat.bdb.bind; /** * Primitive data type constants. * * @author Mark Hayes */ public interface DataType { /** Undefined data type. */ public static final int NONE = 0; /** String data type. */ public static final int STRING = 1; /** byte[] data type. */ public static final int BINARY = 2; /** Integer data type. */ public static final int INT = 3; /** Long data type. */ public static final int LONG = 4; /** Float data type. */ public static final int FLOAT = 5; /** Double data type. */ public static final int DOUBLE = 6; /** Date data type. */ public static final int DATETIME = 7; }