Class YesNoType

    • Field Detail

      • INSTANCE

        public static final YesNoType INSTANCE
    • Constructor Detail

      • YesNoType

        public YesNoType()
    • Method Detail

      • getName

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

        public java.lang.Boolean stringToObject​(java.lang.String xml)
                                         throws java.lang.Exception
        Description copied from interface: IdentifierType
        Convert the value from the mapping file to a Java object.
        Specified by:
        stringToObject in interface IdentifierType<java.lang.Boolean>
        Parameters:
        xml - the value of discriminator-value or unsaved-value attribute
        Returns:
        The converted value of the string representation.
        Throws:
        java.lang.Exception - Indicates a problem converting from the string
      • getDefaultValue

        public java.io.Serializable getDefaultValue()
        Description copied from interface: PrimitiveType
        Get this type's default value.
        Specified by:
        getDefaultValue in interface PrimitiveType<java.lang.Boolean>
        Returns:
        The default value.
      • objectToSQLString

        public java.lang.String objectToSQLString​(java.lang.Boolean value,
                                                  Dialect dialect)
                                           throws java.lang.Exception
        Description copied from interface: LiteralType
        Convert the value into a string representation, suitable for embedding in an SQL statement as a literal.
        Specified by:
        objectToSQLString in interface LiteralType<java.lang.Boolean>
        Parameters:
        value - The value to convert
        dialect - The SQL dialect
        Returns:
        The value's string representation
        Throws:
        java.lang.Exception - Indicates an issue converting the value to literal string.