Class BookStoreDao

    • Constructor Detail

      • BookStoreDao

        public BookStoreDao()
        Create a new BookStoreDao without any configuration
      • BookStoreDao

        @Autowired
        public BookStoreDao​(org.jooq.Configuration configuration)
        Create a new BookStoreDao with an attached configuration
    • Method Detail

      • fetchRangeOfName

        public List<BookStore> fetchRangeOfName​(String lowerInclusive,
                                                String upperInclusive)
        Fetch records that have NAME BETWEEN lowerInclusive AND upperInclusive
      • fetchByName

        public List<BookStore> fetchByName​(String... values)
        Fetch records that have NAME IN (values)
      • fetchOneByName

        public BookStore fetchOneByName​(String value)
        Fetch a unique record that has NAME = value
      • fetchOptionalByName

        public Optional<BookStore> fetchOptionalByName​(String value)
        Fetch a unique record that has NAME = value