インタフェース VariableRepository

すべてのスーパーインタフェース:
org.springframework.data.repository.CrudRepository<Variable,​String>, org.springframework.data.mongodb.repository.MongoRepository<Variable,​String>, org.springframework.data.repository.PagingAndSortingRepository<Variable,​String>, org.springframework.data.repository.query.QueryByExampleExecutor<Variable>, org.springframework.data.repository.Repository<Variable,​String>

@Repository
public interface VariableRepository
extends org.springframework.data.mongodb.repository.MongoRepository<Variable,​String>
The interface that manages variable repository.
導入されたバージョン:
1.0.0
  • メソッドの概要

    修飾子とタイプ メソッド 説明
    Variable findByName​(String name)
    Returns the variable based on the name passed as an argument.

    インタフェースから継承されたメソッド org.springframework.data.repository.CrudRepository

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

    インタフェースから継承されたメソッド org.springframework.data.mongodb.repository.MongoRepository

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

    インタフェースから継承されたメソッド org.springframework.data.repository.PagingAndSortingRepository

    findAll

    インタフェースから継承されたメソッド org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findOne
  • メソッドの詳細

    • findByName

      Variable findByName​(@NonNull String name)
      Returns the variable based on the name passed as an argument.
      パラメータ:
      name - The name
      戻り値:
      The variable linked to the name passed as an argument