toggle menu
data-repositories
JVM
switch theme
search in API
data-repositories
/
org.cryptotrader.data.library.repository
/
TrainingSessionRepository
Training
Session
Repository
interface
TrainingSessionRepository
:
JpaRepository
<
T
,
ID
>
Members
Functions
count
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
count
(
example
:
Example
<
S
>
)
:
Long
delete
Link copied to clipboard
abstract
fun
delete
(
entity
:
T
)
delete
All
Link copied to clipboard
abstract
fun
deleteAll
(
entities
:
Iterable
<
out
T
>
)
delete
All
By
Id
Link copied to clipboard
abstract
fun
deleteAllById
(
ids
:
Iterable
<
out
ID
>
)
delete
All
By
Id
In
Batch
Link copied to clipboard
abstract
fun
deleteAllByIdInBatch
(
ids
:
Iterable
<
ID
>
)
delete
All
In
Batch
Link copied to clipboard
abstract
fun
deleteAllInBatch
(
entities
:
Iterable
<
T
>
)
delete
By
Id
Link copied to clipboard
abstract
fun
deleteById
(
id
:
ID
)
delete
In
Batch
Link copied to clipboard
open
fun
deleteInBatch
(
entities
:
Iterable
<
T
>
)
exists
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
exists
(
example
:
Example
<
S
>
)
:
Boolean
exists
By
Id
Link copied to clipboard
abstract
fun
existsById
(
id
:
ID
)
:
Boolean
find
All
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
findAll
(
example
:
Example
<
S
>
)
:
List
<
S
>
abstract
fun
findAll
(
)
:
Iterable
<
T
>
abstract
fun
findAll
(
)
:
List
<
T
>
abstract
fun
findAll
(
pageable
:
Pageable
)
:
Page
<
T
>
abstract
fun
<
S
:
T
?
>
findAll
(
example
:
Example
<
S
>
)
:
Iterable
<
S
>
abstract
fun
<
S
:
T
?
>
findAll
(
example
:
Example
<
S
>
,
pageable
:
Pageable
)
:
Page
<
S
>
find
All
By
Id
Link copied to clipboard
abstract
fun
findAllById
(
ids
:
Iterable
<
ID
>
)
:
Iterable
<
T
>
abstract
fun
findAllById
(
ids
:
Iterable
<
ID
>
)
:
List
<
T
>
find
By
Link copied to clipboard
abstract
fun
<
S
:
T
?
,
R
>
findBy
(
example
:
Example
<
S
>
,
queryFunction
:
(
FluentQuery.FetchableFluentQuery
<
S
>
)
->
R
)
:
R
find
By
Id
Link copied to clipboard
abstract
fun
findById
(
id
:
ID
)
:
Optional
<
T
>
find
One
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
findOne
(
example
:
Example
<
S
>
)
:
Optional
<
S
>
flush
Link copied to clipboard
abstract
fun
flush
(
)
get
By
Id
Link copied to clipboard
abstract
fun
getById
(
id
:
ID
)
:
T
get
One
Link copied to clipboard
abstract
fun
getOne
(
id
:
ID
)
:
T
get
Reference
By
Id
Link copied to clipboard
abstract
fun
getReferenceById
(
id
:
ID
)
:
T
save
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
save
(
entity
:
S
)
:
S
save
All
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
saveAll
(
entities
:
Iterable
<
S
>
)
:
Iterable
<
S
>
abstract
fun
<
S
:
T
?
>
saveAll
(
entities
:
Iterable
<
S
>
)
:
List
<
S
>
save
All
And
Flush
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
saveAllAndFlush
(
entities
:
Iterable
<
S
>
)
:
List
<
S
>
save
And
Flush
Link copied to clipboard
abstract
fun
<
S
:
T
?
>
saveAndFlush
(
entity
:
S
)
:
S