Class DiscriminatorType

    • Constructor Detail

      • DiscriminatorType

        public DiscriminatorType​(Type underlyingType,
                                 Loadable persister)
    • Method Detail

      • getName

        public java.lang.String getName()
        Description copied from interface: Type
        Returns the abbreviated name of the type.
        Returns:
        String the Hibernate type name
      • isMutable

        public boolean isMutable()
        Description copied from interface: Type
        Are objects of this type mutable. (With respect to the referencing object ... entities and collections are considered immutable because they manage their own internal state.)
        Returns:
        boolean
      • nullSafeGet

        public java.lang.Object nullSafeGet​(java.sql.ResultSet rs,
                                            java.lang.String[] names,
                                            SharedSessionContractImplementor session,
                                            java.lang.Object owner)
                                     throws HibernateException,
                                            java.sql.SQLException
        Description copied from interface: Type
        Extract a value of the mapped class from the JDBC result set. Implementors should handle possibility of null values.
        Parameters:
        rs - The result set from which to extract value.
        names - the column names making up this type value (use to read from result set)
        session - The originating session
        owner - the parent entity
        Returns:
        The extracted value
        Throws:
        HibernateException - An error from Hibernate
        java.sql.SQLException - An error from the JDBC driver
        See Also:
        alternative, 2-phase property initialization
      • nullSafeGet

        public java.lang.Object nullSafeGet​(java.sql.ResultSet rs,
                                            java.lang.String name,
                                            SharedSessionContractImplementor session,
                                            java.lang.Object owner)
                                     throws HibernateException,
                                            java.sql.SQLException
        Description copied from interface: Type
        Extract a value of the mapped class from the JDBC result set. Implementors should handle possibility of null values. This form might be called if the type is known to be a single-column type.
        Parameters:
        rs - The result set from which to extract value.
        name - the column name making up this type value (use to read from result set)
        session - The originating session
        owner - the parent entity
        Returns:
        The extracted value
        Throws:
        HibernateException - An error from Hibernate
        java.sql.SQLException - An error from the JDBC driver
      • nullSafeSet

        public void nullSafeSet​(java.sql.PreparedStatement st,
                                java.lang.Object value,
                                int index,
                                boolean[] settable,
                                SharedSessionContractImplementor session)
                         throws HibernateException,
                                java.sql.SQLException
        Description copied from interface: Type
        Bind a value represented by an instance of the mapped class to the JDBC prepared statement, ignoring some columns as dictated by the 'settable' parameter. Implementors should handle the possibility of null values. A multi-column type should bind parameters starting from index.
        Parameters:
        st - The JDBC prepared statement to which to bind
        value - the object to write
        index - starting parameter bind index
        settable - an array indicating which columns to bind/ignore
        session - The originating session
        Throws:
        HibernateException - An error from Hibernate
        java.sql.SQLException - An error from the JDBC driver
      • nullSafeSet

        public void nullSafeSet​(java.sql.PreparedStatement st,
                                java.lang.Object value,
                                int index,
                                SharedSessionContractImplementor session)
                         throws HibernateException,
                                java.sql.SQLException
        Description copied from interface: Type
        Bind a value represented by an instance of the mapped class to the JDBC prepared statement. Implementors should handle possibility of null values. A multi-column type should bind parameters starting from index.
        Parameters:
        st - The JDBC prepared statement to which to bind
        value - the object to write
        index - starting parameter bind index
        session - The originating session
        Throws:
        HibernateException - An error from Hibernate
        java.sql.SQLException - An error from the JDBC driver
      • toLoggableString

        public java.lang.String toLoggableString​(java.lang.Object value,
                                                 SessionFactoryImplementor factory)
                                          throws HibernateException
        Description copied from interface: Type
        Generate a representation of the value for logging purposes.
        Parameters:
        value - The value to be logged
        factory - The session factory
        Returns:
        The loggable representation
        Throws:
        HibernateException - An error from Hibernate
      • deepCopy

        public java.lang.Object deepCopy​(java.lang.Object value,
                                         SessionFactoryImplementor factory)
                                  throws HibernateException
        Description copied from interface: Type
        Return a deep copy of the persistent state, stopping at entities and at collections.
        Parameters:
        value - The value to be copied
        factory - The session factory
        Returns:
        The deep copy
        Throws:
        HibernateException - An error from Hibernate
      • replace

        public java.lang.Object replace​(java.lang.Object original,
                                        java.lang.Object target,
                                        SharedSessionContractImplementor session,
                                        java.lang.Object owner,
                                        java.util.Map copyCache)
                                 throws HibernateException
        Description copied from interface: Type
        During merge, replace the existing (target) value in the entity we are merging to with a new (original) value from the detached entity we are merging. For immutable objects, or null values, it is safe to simply return the first parameter. For mutable objects, it is safe to return a copy of the first parameter. For objects with component values, it might make sense to recursively replace component values.
        Parameters:
        original - the value from the detached entity being merged
        target - the value in the managed entity
        session - The originating session
        owner - The owner of the value
        copyCache - The cache of already copied/replaced values
        Returns:
        the value to be merged
        Throws:
        HibernateException - An error from Hibernate
      • toColumnNullness

        public boolean[] toColumnNullness​(java.lang.Object value,
                                          Mapping mapping)
        Description copied from interface: Type
        Given an instance of the type, return an array of boolean, indicating which mapped columns would be null.
        Parameters:
        value - an instance of the type
        mapping - The mapping abstraction
        Returns:
        array indicating column nullness for a value instance
      • isDirty

        public boolean isDirty​(java.lang.Object old,
                               java.lang.Object current,
                               boolean[] checkable,
                               SharedSessionContractImplementor session)
                        throws HibernateException
        Description copied from interface: Type
        Should the parent be considered dirty, given both the old and current value?
        Parameters:
        old - the old value
        current - the current value
        checkable - An array of booleans indicating which columns making up the value are actually checkable
        session - The session from which the request originated.
        Returns:
        true if the field is dirty
        Throws:
        HibernateException - A problem occurred performing the checking
      • sqlTypes

        public int[] sqlTypes​(Mapping mapping)
                       throws MappingException
        Description copied from interface: Type
        Return the JDBC types codes (per Types) for the columns mapped by this type.

        NOTE: The number of elements in this array matches the return from Type.getColumnSpan(org.hibernate.engine.spi.Mapping).

        Parameters:
        mapping - The mapping object :/
        Returns:
        The JDBC type codes.
        Throws:
        MappingException - Generally indicates an issue accessing the passed mapping object.
      • dictatedSizes

        public Size[] dictatedSizes​(Mapping mapping)
                             throws MappingException
        Description copied from interface: Type
        Return the column sizes dictated by this type. For example, the mapping for a char/Character would have a dictated length limit of 1; for a string-based UUID would have a size limit of 36; etc.

        NOTE: The number of elements in this array matches the return from Type.getColumnSpan(org.hibernate.engine.spi.Mapping).

        Parameters:
        mapping - The mapping object :/
        Returns:
        The dictated sizes.
        Throws:
        MappingException - Generally indicates an issue accessing the passed mapping object.
      • getColumnSpan

        public int getColumnSpan​(Mapping mapping)
                          throws MappingException
        Description copied from interface: Type
        How many columns are used to persist this type. Always the same as sqlTypes(mapping).length
        Parameters:
        mapping - The mapping object :/
        Returns:
        The number of columns
        Throws:
        MappingException - Generally indicates an issue accessing the passed mapping object.