listAll

@GenerateBridge
open fun listAll(): List<Entity>

Find all entities of this type. This method is a shortcut for findAll().list().

Return

a List containing all results, without paging

See also

PanacheCompanion.findAll
PanacheCompanion.streamAll

@GenerateBridge
open fun listAll(sort: Sort): List<Entity>

Find all entities of this type, in the given order. This method is a shortcut for findAll(sort).list().

Return

a List containing all results, without paging

See also

PanacheCompanion.findAll
PanacheCompanion.streamAll

Parameters

sort

the sort order to use