portfolio
Toggle table of contents
0.0.1-SNAPSHOT
jvm
Platform filter
jvm
Switch theme
Search in API
portfolio
portfolio
/
org.project.portfolio.article.domain
/
ArticleViewRepository
Article
View
Repository
@
EnableRedisRepositories
interface
ArticleViewRepository
:
CrudRepository
<
ArticleView
,
String
>
Members
Functions
count
Link copied to clipboard
abstract
fun
count
(
)
:
Long
delete
Link copied to clipboard
abstract
fun
delete
(
entity
:
ArticleView
)
delete
All
Link copied to clipboard
abstract
fun
deleteAll
(
)
abstract
fun
deleteAll
(
entities
:
MutableIterable
<
ArticleView
>
)
delete
All
By
Id
Link copied to clipboard
abstract
fun
deleteAllById
(
ids
:
MutableIterable
<
String
>
)
delete
By
Id
Link copied to clipboard
abstract
fun
deleteById
(
id
:
String
)
exists
By
Id
Link copied to clipboard
abstract
fun
existsById
(
id
:
String
)
:
Boolean
find
All
Link copied to clipboard
abstract
fun
findAll
(
)
:
MutableIterable
<
ArticleView
>
find
All
By
Id
Link copied to clipboard
abstract
fun
findAllById
(
ids
:
MutableIterable
<
String
>
)
:
MutableIterable
<
ArticleView
>
find
By
Id
Link copied to clipboard
abstract
fun
findById
(
id
:
String
)
:
Optional
<
ArticleView
>
save
Link copied to clipboard
abstract
fun
<
S
:
ArticleView
>
save
(
entity
:
S
)
:
S
save
All
Link copied to clipboard
abstract
fun
<
S
:
ArticleView
>
saveAll
(
entities
:
MutableIterable
<
S
>
)
:
MutableIterable
<
S
>