Interface IEntityInstance

All Superinterfaces:
Serializable
All Known Implementing Classes:
EntityInstance, EntityInstanceRecord

public interface IEntityInstance extends Serializable
This class is generated by jOOQ.
  • Method Details

    • setId

      IEntityInstance setId(Long value)
      Setter for public.entity_instance.id.
    • getId

      Long getId()
      Getter for public.entity_instance.id.
    • setTrustdeckId

      IEntityInstance setTrustdeckId(UUID value)
      Setter for public.entity_instance.trustdeck_id.
    • getTrustdeckId

      UUID getTrustdeckId()
      Getter for public.entity_instance.trustdeck_id.
    • setProjectId

      IEntityInstance setProjectId(Integer value)
      Setter for public.entity_instance.project_id.
    • getProjectId

      @NotNull @NotNull Integer getProjectId()
      Getter for public.entity_instance.project_id.
    • setEntityTypeId

      IEntityInstance setEntityTypeId(Integer value)
      Setter for public.entity_instance.entity_type_id.
    • getEntityTypeId

      @NotNull @NotNull Integer getEntityTypeId()
      Getter for public.entity_instance.entity_type_id.
    • setData

      IEntityInstance setData(org.jooq.JSONB value)
      Setter for public.entity_instance.data.
    • getData

      @NotNull @NotNull org.jooq.JSONB getData()
      Getter for public.entity_instance.data.
    • setFullTextSearchVector

      @Deprecated IEntityInstance setFullTextSearchVector(Object value)
      Deprecated.
      Unknown data type. If this is a qualified, user-defined type, it may have been excluded from code generation. If this is a built-in type, you can define an explicit Binding to specify how this type should be handled. Deprecation can be turned off using <deprecationOnUnknownTypes/> in your code generator configuration.
    • getFullTextSearchVector

      @Deprecated Object getFullTextSearchVector()
      Deprecated.
      Unknown data type. If this is a qualified, user-defined type, it may have been excluded from code generation. If this is a built-in type, you can define an explicit Binding to specify how this type should be handled. Deprecation can be turned off using <deprecationOnUnknownTypes/> in your code generator configuration.
    • setDataText

      IEntityInstance setDataText(String value)
      Setter for public.entity_instance.data_text.
    • getDataText

      String getDataText()
      Getter for public.entity_instance.data_text.
    • setDataSha256

      IEntityInstance setDataSha256(byte[] value)
      Setter for public.entity_instance.data_sha256.
    • getDataSha256

      byte[] getDataSha256()
      Getter for public.entity_instance.data_sha256.
    • setIsDeleted

      IEntityInstance setIsDeleted(Boolean value)
      Setter for public.entity_instance.is_deleted.
    • getIsDeleted

      Boolean getIsDeleted()
      Getter for public.entity_instance.is_deleted.
    • setCreatedAt

      IEntityInstance setCreatedAt(OffsetDateTime value)
      Setter for public.entity_instance.created_at.
    • getCreatedAt

      OffsetDateTime getCreatedAt()
      Getter for public.entity_instance.created_at.
    • setUpdatedAt

      IEntityInstance setUpdatedAt(OffsetDateTime value)
      Setter for public.entity_instance.updated_at.
    • getUpdatedAt

      OffsetDateTime getUpdatedAt()
      Getter for public.entity_instance.updated_at.
    • from

      void from(IEntityInstance from)
      Load data from another generated Record/POJO implementing the common interface IEntityInstance
    • into

      <E extends IEntityInstance> E into(E into)
      Copy data into another generated Record/POJO implementing the common interface IEntityInstance