KotlinTrader / com.doubleu.kotlintrader.data / Data

Data

object Data

Types

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

Properties

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

Extension Functions

valueOf fun Any?.valueOf(): String