minor improvements to Javadoc
This commit is contained in:
parent
5ca64dba8b
commit
39c2ab2747
|
@ -33,8 +33,8 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|||
* For other collection mappings, describes the elements
|
||||
* </li>
|
||||
* <li>
|
||||
* For discriminated association mappings (`@Any` and `@ManyToAny`), describes the discriminator
|
||||
* value.
|
||||
* For discriminated association mappings ({@link Any @Any} and {@link ManyToAny @ManyToAny}), describes the
|
||||
* discriminator value.
|
||||
* </li>
|
||||
* </ul>
|
||||
*
|
||||
|
|
|
@ -36,8 +36,8 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|||
* For other collection mappings, describes the elements
|
||||
* </li>
|
||||
* <li>
|
||||
* For discriminated association mappings (`@Any` and `@ManyToAny`), describes the discriminator
|
||||
* value.
|
||||
* For discriminated association mappings ({@link Any @Any} and {@link ManyToAny @ManyToAny}), describes the
|
||||
* discriminator value.
|
||||
* </li>
|
||||
* </ul>
|
||||
* <p>
|
||||
|
|
|
@ -196,7 +196,7 @@ public class JoinedSubclassEntityPersister extends AbstractEntityPersister {
|
|||
final Dialect dialect = creationContext.getDialect();
|
||||
final SqmFunctionRegistry functionRegistry = creationContext.getFunctionRegistry();
|
||||
final TypeConfiguration typeConfiguration = creationContext.getTypeConfiguration();
|
||||
final BasicTypeRegistry basicTypeRegistry = creationContext.getTypeConfiguration().getBasicTypeRegistry();
|
||||
final BasicTypeRegistry basicTypeRegistry = typeConfiguration.getBasicTypeRegistry();
|
||||
|
||||
// DISCRIMINATOR
|
||||
|
||||
|
|
|
@ -16,6 +16,8 @@ import org.hibernate.type.descriptor.jdbc.JdbcType;
|
|||
/**
|
||||
* Descriptor for {@link Boolean} handling.
|
||||
*
|
||||
* @see org.hibernate.cfg.AvailableSettings#PREFERRED_BOOLEAN_JDBC_TYPE
|
||||
*
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
public class BooleanJavaType extends AbstractClassJavaType<Boolean> implements
|
||||
|
|
|
@ -29,6 +29,8 @@ import org.hibernate.type.descriptor.jdbc.JdbcTypeIndicators;
|
|||
* Java {@link Duration} to SQL {@code numeric(21)} here, which
|
||||
* can comfortably represent 60 millennia of nanos.
|
||||
*
|
||||
* @see org.hibernate.cfg.AvailableSettings#PREFERRED_DURATION_JDBC_TYPE
|
||||
*
|
||||
* @author Steve Ebersole
|
||||
* @author Gavin King
|
||||
*/
|
||||
|
|
|
@ -29,6 +29,8 @@ import org.hibernate.type.spi.TypeConfiguration;
|
|||
/**
|
||||
* Java type descriptor for the Java {@link Instant} type.
|
||||
*
|
||||
* @see org.hibernate.cfg.AvailableSettings#PREFERRED_INSTANT_JDBC_TYPE
|
||||
*
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
public class InstantJavaType extends AbstractTemporalJavaType<Instant>
|
||||
|
|
|
@ -18,6 +18,8 @@ import org.hibernate.type.descriptor.jdbc.JdbcTypeIndicators;
|
|||
/**
|
||||
* Descriptor for {@link UUID} handling.
|
||||
*
|
||||
* @see org.hibernate.cfg.AvailableSettings#PREFERRED_UUID_JDBC_TYPE
|
||||
*
|
||||
* @author Steve Ebersole
|
||||
*/
|
||||
public class UUIDJavaType extends AbstractClassJavaType<UUID> {
|
||||
|
|
Loading…
Reference in New Issue