/** * A way of keeping track of the types of objects stored in the database. * Use different integer constants for the different types. By using this * class, you can easily expand the capabilities of the database. * $Id: ObjectType.java,v 1.3 1999/05/04 19:14:24 rebelsky Exp $ */ public class ObjectType { // +-----------+----------------------------------------------- // | Constants | // +-----------+ /** The value used to indicate generic entries. */ public static final int ENTRY = 0; /** The value used to indicate generic people. */ public static final int PERSON = 1; /** The value used to indicate pieces of art. */ public static final int ART = 2; /** The value used to indicate "Artist" entries. */ public static final int ARTIST = 11; /** The value used to indicate "Bidder" entries. */ public static final int BIDDER = 12; public static final int BUYER = 12; } // class ObjectType