play.ext.activerecord

Eternal

Related Doc: package activerecord

trait Eternal extends ActiveRecord with Create with TimestampConversion with Saveable

Object cannot be deleted nor updated

Linear Supertypes
Saveable, TimestampConversion, Create, ActiveRecord, com.github.aselab.activerecord.ActiveRecord.HabtmAssociationSupport, ActiveRecordBase[Long], com.github.aselab.activerecord.ActiveRecord.AssociationSupport, ActiveModel, ValidationSupport, JsonSerializer, FormSerializer, IO, Validatable, ProductModel, Product, Equals, CRUDable, com.github.aselab.activerecord.inner.Saveable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Eternal
  2. Saveable
  3. TimestampConversion
  4. Create
  5. ActiveRecord
  6. HabtmAssociationSupport
  7. ActiveRecordBase
  8. AssociationSupport
  9. ActiveModel
  10. ValidationSupport
  11. JsonSerializer
  12. FormSerializer
  13. IO
  14. Validatable
  15. ProductModel
  16. Product
  17. Equals
  18. CRUDable
  19. Saveable
  20. AnyRef
  21. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Definition Classes
    Equals
  2. abstract def productArity: Int

    Definition Classes
    Product
  3. abstract def productElement(n: Int): Any

    Definition Classes
    Product

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. lazy val _companion: ProductModelCompanion[Eternal.this.type]

    Definition Classes
    ProductModel
  5. var _isNewRecord: Boolean

    Attributes
    protected
    Definition Classes
    CRUDable
  6. def afterCreate(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  7. def afterDelete(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  8. def afterSave(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  9. def afterUpdate(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def asJson(onlyFields: String*): JValue

    Definition Classes
    JsonSerializer
  12. def asJson(onlyFields: List[String]): JValue

    Definition Classes
    JsonSerializer
  13. def asJson: JValue

    Definition Classes
    JsonSerializer
  14. macro def assign(data: Map[String, Any]): Eternal.this.type

    Definition Classes
    IO
  15. macro def assign(data: (String, Any)*): Eternal.this.type

    Definition Classes
    IO
  16. def assignFormValues(data: Map[String, String]): Eternal.this.type

    Definition Classes
    FormSerializer
  17. def beforeCreate(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  18. def beforeDelete(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  19. def beforeSave(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  20. def beforeUpdate(): Unit

    Attributes
    protected
    Definition Classes
    CRUDable
  21. def beforeValidation(): Unit

    Attributes
    protected
    Definition Classes
    Validatable
  22. def belongsTo[T <: AR](foreignKey: String)(implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.BelongsToAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  23. def belongsTo[T <: AR](implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.BelongsToAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  24. def clearErrors(): Unit

    Definition Classes
    Validatable
  25. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. def create(validate: Boolean): Eternal.this.type

    Definition Classes
    ActiveRecordBase
  27. def create: Eternal.this.type

    Definition Classes
    ActiveRecordBase
  28. var createdAt: Timestamp

    Definition Classes
    Create
  29. implicit def date2timestamp(date: Option[Date]): Option[Timestamp]

    Attributes
    protected
    Definition Classes
    TimestampConversion
  30. implicit def date2timestamp(date: Date): Timestamp

    Attributes
    protected
    Definition Classes
    TimestampConversion
  31. def delete(): Boolean

    Definition Classes
    Eternal → CRUDable
  32. def doCreate(): Boolean

    Attributes
    protected
    Definition Classes
    Create → ActiveRecordBase → CRUDable
  33. def doDelete(): Boolean

    Attributes
    protected
    Definition Classes
    ActiveRecordBase → CRUDable
  34. def doSave(): Boolean

    Attributes
    protected
    Definition Classes
    Saveable
  35. def doUpdate(): Boolean

    Attributes
    protected
    Definition Classes
    Eternal → ActiveRecordBase → CRUDable
  36. def doValidate(): Unit

    Definition Classes
    ValidationSupport → Validatable
  37. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  38. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  39. val errors: Errors

    Definition Classes
    Validatable
  40. def fieldErrors: Seq[ValidationError]

    Definition Classes
    Validatable
  41. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  42. def formErrors: Seq[ValidationError]

    Definition Classes
    FormSerializer
  43. def fromJValue(jvalue: JValue): Eternal.this.type

    Definition Classes
    JsonSerializer
  44. def fromJson(json: String): Eternal.this.type

    Definition Classes
    JsonSerializer
  45. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  46. def globalErrors: Seq[ValidationError]

    Definition Classes
    Validatable
  47. def hasAndBelongsToMany[T <: ActiveRecord](conditions: Map[String, Any])(implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.HasAndBelongsToManyAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    HabtmAssociationSupport
  48. def hasAndBelongsToMany[T <: ActiveRecord](implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.HasAndBelongsToManyAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    HabtmAssociationSupport
  49. def hasError(name: String): Boolean

    Definition Classes
    Validatable
  50. def hasErrors: Boolean

    Definition Classes
    Validatable
  51. def hasMany[T <: AR](conditions: Map[String, Any], foreignKey: String)(implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.HasManyAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  52. def hasMany[T <: AR](implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.HasManyAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  53. def hasManyThrough[T <: AR, I <: AR](through: com.github.aselab.activerecord.ActiveRecord.CollectionAssociation[Eternal.this.type, I], conditions: Map[String, Any], foreignKey: String)(implicit m1: ClassTag[T], m2: ClassTag[I]): com.github.aselab.activerecord.ActiveRecord.HasManyThroughAssociation[Eternal.this.type, T, I]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  54. def hasOne[T <: AR](conditions: Map[String, Any], foreignKey: String)(implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.HasOneAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  55. def hasOne[T <: AR](implicit m: ClassTag[T]): com.github.aselab.activerecord.ActiveRecord.HasOneAssociation[Eternal.this.type, T]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  56. def hasOneThrough[T <: AR, I <: AR](through: com.github.aselab.activerecord.ActiveRecord.SingularAssociation[Eternal.this.type, I], conditions: Map[String, Any], foreignKey: String)(implicit m1: ClassTag[T], m2: ClassTag[I]): com.github.aselab.activerecord.ActiveRecord.HasOneThroughAssociation[Eternal.this.type, T, I]

    Attributes
    protected
    Definition Classes
    AssociationSupport
  57. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  58. val id: Long

    Definition Classes
    ActiveRecord → ActiveRecordBase
  59. def isDeleted: Boolean

    Definition Classes
    ActiveRecordBase
  60. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  61. def isNewRecord: Boolean

    Definition Classes
    ActiveRecordBase → ActiveModel → CRUDable → Saveable
  62. def isPersisted: Boolean

    Definition Classes
    ActiveRecord → ActiveRecordBase
  63. def isValid: Boolean

    Definition Classes
    Validatable
  64. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  65. final def notify(): Unit

    Definition Classes
    AnyRef
  66. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  67. def productIterator: Iterator[Any]

    Definition Classes
    Product
  68. def productPrefix: String

    Definition Classes
    Product
  69. lazy val recordCompanion: ActiveRecordBaseCompanion[Long, Eternal.this.type]

    Definition Classes
    ActiveRecordBase
  70. def recordInDatabase: Option[Eternal.this.type]

    Definition Classes
    ActiveRecordBase
  71. def save(throws: Boolean, validate: Boolean): Boolean

    Definition Classes
    Saveable → ActiveRecordBase
  72. def save(): Boolean

    Definition Classes
    ActiveRecordBase → Validatable → CRUDable → Saveable
  73. def saveEither: Either[Errors, Eternal.this.type]

    Definition Classes
    ValidationSupport
  74. def saveWithoutValidation(): Boolean

    Definition Classes
    Validatable
  75. def serializedValue(value: Any): Any

    Attributes
    protected
    Definition Classes
    IO
  76. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  77. implicit def timestamp2date(timestamp: Option[Timestamp]): Option[Date]

    Attributes
    protected
    Definition Classes
    TimestampConversion
  78. implicit def timestamp2date(timestamp: Timestamp): Date

    Attributes
    protected
    Definition Classes
    TimestampConversion
  79. def toFieldType(value: Any, fieldInfo: FieldInfo): Any

    Definition Classes
    FormSerializer → IO
  80. def toFormValues(prefix: Option[String]): Map[String, String]

    Definition Classes
    FormSerializer
  81. def toFormValues: Map[String, String]

    Definition Classes
    FormSerializer
  82. def toJson(onlyFields: String*): String

    Definition Classes
    JsonSerializer
  83. def toJson(onlyFields: List[String]): String

    Definition Classes
    JsonSerializer
  84. def toJson: String

    Definition Classes
    JsonSerializer
  85. def toMap: Map[String, Any]

    Definition Classes
    ActiveRecordBase → IO
  86. def toMap(onlyFields: String*): Map[String, Any]

    Definition Classes
    IO
  87. def toMap(onlyFields: List[String]): Map[String, Any]

    Definition Classes
    IO
  88. def toSerialized(map: Map[String, Any]): Map[String, Any]

    Attributes
    protected
    Definition Classes
    IO
  89. def toSerializedMap(onlyFields: List[String]): Map[String, Any]

    Definition Classes
    IO
  90. def toSerializedMap: Map[String, Any]

    Definition Classes
    IO
  91. def toString(): String

    Definition Classes
    AnyRef → Any
  92. def unsafeAssign(data: Map[String, Any]): Eternal.this.type

    Definition Classes
    ActiveRecordBase → IO
  93. def unsafeAssign(data: Map[String, Any], assignFunc: (Any, FieldInfo) ⇒ Any): Eternal.this.type

    Definition Classes
    IO
  94. def update(validate: Boolean): Eternal.this.type

    Definition Classes
    ActiveRecordBase
  95. def update: Eternal.this.type

    Definition Classes
    ActiveRecordBase
  96. def validate(): Boolean

    Definition Classes
    FormSerializer → Validatable
  97. def validateAndSave(): Boolean

    Attributes
    protected
    Definition Classes
    Saveable
  98. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  99. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  100. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Saveable

Inherited from TimestampConversion

Inherited from Create

Inherited from ActiveRecord

Inherited from com.github.aselab.activerecord.ActiveRecord.HabtmAssociationSupport

Inherited from ActiveRecordBase[Long]

Inherited from com.github.aselab.activerecord.ActiveRecord.AssociationSupport

Inherited from ActiveModel

Inherited from ValidationSupport

Inherited from JsonSerializer

Inherited from FormSerializer

Inherited from IO

Inherited from Validatable

Inherited from ProductModel

Inherited from Product

Inherited from Equals

Inherited from CRUDable

Inherited from com.github.aselab.activerecord.inner.Saveable

Inherited from AnyRef

Inherited from Any

Ungrouped