Interface ConvertedSectionCollection

All Superinterfaces:
org.springframework.data.repository.CrudRepository<ConvertedSection,org.bson.types.ObjectId>, org.springframework.data.mongodb.repository.MongoRepository<ConvertedSection,org.bson.types.ObjectId>, org.springframework.data.repository.PagingAndSortingRepository<ConvertedSection,org.bson.types.ObjectId>, org.springframework.data.repository.query.QueryByExampleExecutor<ConvertedSection>, org.springframework.data.repository.Repository<ConvertedSection,org.bson.types.ObjectId>

@Repository public interface ConvertedSectionCollection extends org.springframework.data.mongodb.repository.MongoRepository<ConvertedSection,org.bson.types.ObjectId>
  • Method Summary

    Modifier and Type
    Method
    Description
    findByQuarterRangeAndCourseId(String startQuarter, String endQuarter, String courseId)
     
    findByQuarterRangeAndInstructor(String startQuarter, String endQuarter, String instructor)
     
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAllById, findById, save

    Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository

    findAll, findAll, findAll, findAll, insert, insert, saveAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findOneByQuarterAndEnrollCode

      @Query("{\'courseInfo.quarter\': ?0, \'section.enrollCode\': ?1}") Optional<ConvertedSection> findOneByQuarterAndEnrollCode(String quarter, String enrollCode)
    • findByQuarterRangeAndCourseId

      @Query("{\'courseInfo.quarter\': {$gte: ?0, $lte: ?1}, \'courseInfo.courseId\': { $regex: ?2 }}") List<ConvertedSection> findByQuarterRangeAndCourseId(String startQuarter, String endQuarter, String courseId)
    • findByQuarterRangeAndInstructor

      @Query("{\'courseInfo.quarter\': {$gte: ?0, $lte: ?1}, \'section.instructors\': { $regex: ?2 }}") List<ConvertedSection> findByQuarterRangeAndInstructor(String startQuarter, String endQuarter, String instructor)