DaoEntityID

class DaoEntityID<T : Comparable<T>>(id: T?, table: IdTable<T>) : EntityID<T>

Class representing a wrapper for a stored identity value of type T, which is managed and cached by an EntityClass using a data access object pattern.

Constructors

Link copied to clipboard
constructor(id: T?, table: IdTable<T>)

Properties

Link copied to clipboard
var _value: Any?
Link copied to clipboard
Link copied to clipboard
val value: T

Functions

Link copied to clipboard
open operator override fun compareTo(other: EntityID<T>): Int
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String