Interface ArraysEntityRepository
- All Superinterfaces:
CrudRepository<ArraysEntity, Long>, GenericRepository<ArraysEntity, Long>
-
Method Summary
Modifier and TypeMethodDescriptionqueryBySomeId(Long someId) voidupdate(Long id, String[] stringArray, Collection<String> stringArrayCollection, Short[] shortArray, short[] shortPrimitiveArray, Collection<Short> shortArrayCollection, @Nullable @Nullable Integer[] integerArray, @Nullable @Nullable int[] integerPrimitiveArray, @Nullable @Nullable Collection<Integer> integerArrayCollection) Methods inherited from interface CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findById, save, saveAll, update, updateAll
-
Method Details
-
update
void update(@Id Long id, @Parameter("stringArray") String[] stringArray, @Parameter("stringArrayCollection") Collection<String> stringArrayCollection, @Parameter("shortArray") Short[] shortArray, @Parameter("shortPrimitiveArray") short[] shortPrimitiveArray, @Parameter("shortArrayCollection") Collection<Short> shortArrayCollection, @Parameter("integerArray") @Nullable @Nullable @Nullable Integer[] integerArray, @Parameter("integerPrimitiveArray") @Nullable @Nullable @Nullable int[] integerPrimitiveArray, @Parameter("integerArrayCollection") @Nullable @Nullable @Nullable Collection<Integer> integerArrayCollection) -
queryBySomeId
-