object Data
EntityProperty |
abstract class EntityProperty<T : Entity<T>?> : SimpleObjectProperty<T?>
A Property representing an Entity |
MasterUser |
object MasterUser : EntityProperty<Trader>
Represents the current MasterUser, may be null |
Ort |
object Ort : EntityProperty<Ort>
Represents the current Ort, may be null |
Schiff |
object Schiff : EntityProperty<Schiff>
Represents the current Schiff, may be null |
User |
object User : EntityProperty<Trader>
Represents the current user, may be null |
masterUser |
var masterUser: Trader?
Represents the current MasterUser, may be null |
ort |
var ort: Ort?
Represents the current Ort, may be null |
schiff |
var schiff: Schiff?
Represents the current Schiff, may be null |
user |
var user: Trader?
Represents the current user, may be null |
valueOf |
fun Any?.valueOf(): String |