Interface AssociationPropertyType

All Known Implementing Classes:
DefaultAssociationPropertyType

public interface AssociationPropertyType
Represents a property that defines an association between entity classes.

This interface is used to define relationships between entities, such as one-to-one, one-to-many, or many-to-many associations. Association properties are typically created for fields annotated with Association in entity classes.

Implementations of this interface are typically generated at compile time by the Doma annotation processor.

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the name of this association property.
  • Method Details

    • getName

      String getName()
      Returns the name of this association property.

      The name typically corresponds to the field name in the entity class that is annotated with Association.

      Returns:
      the name of this association property