Interface FetchFromStep


  • public interface FetchFromStep
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      FetchWhereStep from​(EntityType<?> entityType)
      Add the primary entity type to the query being built.
      This entity will determine the table that the query will start with.
      If additional tables are needed for the requested fields, corresponding joins will be automatically appended to the query.
    • Method Detail

      • from

        FetchWhereStep from​(EntityType<?> entityType)
        Add the primary entity type to the query being built.
        This entity will determine the table that the query will start with.
        If additional tables are needed for the requested fields, corresponding joins will be automatically appended to the query.
        Parameters:
        entityType - the primary entity type to fetch from, non-null
        Returns:
        the next step in which a condition will be added to the query
        Throws:
        java.lang.NullPointerException - if the entity is null