Subversion Repositories WebE

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

1
//$Id: DiscriminatorType.java 11282 2007-03-14 22:05:59Z epbernard $
//EJB3 Specification Copyright 2004-2006 Sun Microsystems, Inc.
package javax.persistence;

/**
 * Defines supported types of the discriminator column
 *
 * @author Emmanuel Bernard
 */

public enum DiscriminatorType {
        /**
         * String as the discriminator type
         */

        STRING,
        /**
         * Single character as the discriminator type
         */

        CHAR,
        /**
         * Integer as the discriminator type
         */

        INTEGER
};