Uses of Interface
st.orm.Entity

Packages that use Entity
Package
Description
 
 
  • Uses of Entity in st.orm

    Classes in st.orm with type parameters of type Entity
    Modifier and Type
    Interface
    Description
    interface 
    EntityCallback<E extends Entity<?>>
    Typed callback interface for entity lifecycle events.
    Methods in st.orm with type parameters of type Entity
    Modifier and Type
    Method
    Description
    static <ID, E extends Entity<ID>>
    ID
    Ref.entityId(Ref<E> ref)
    Extracts the primary key from the given entity ref returning a type-safe id.
    static <E extends Entity<?>>
    Ref<E>
    Ref.of(E entity)
    Creates a fully loaded ref instance that wraps the given entity.
  • Uses of Entity in st.orm.repository

    Classes in st.orm.repository with type parameters of type Entity
    Modifier and Type
    Interface
    Description
    interface 
    EntityRepository<E extends Entity<ID>,ID>
    Provides a generic interface with CRUD operations for entities.
    Methods in st.orm.repository with type parameters of type Entity
    Modifier and Type
    Method
    Description
    <T extends Entity<ID>, ID>
    EntityRepository<T,ID>
    RepositoryLookup.entity(Class<T> type)
    Returns the repository for the given entity type.