Interface ICaseDataInstance

All Superinterfaces:
Serializable

public interface ICaseDataInstance extends Serializable
This interface defines the properties of a case data object (instance) from database.
Since:
7.1
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    This method returns the database ID of the case this instance belongs to.
    This method returns the name of the entity type of the instance.
    long
    This method returns the database ID of the case instance.
    This method returns the generated ID of the instance.
    This method returns the name of the instance.
    This method returns a list of values associated with this instance.
  • Method Details

    • getId

      long getId()
      This method returns the database ID of the case instance.
      Returns:
      the database ID of the case instance.
    • getCaseId

      long getCaseId()
      This method returns the database ID of the case this instance belongs to.
      Returns:
      the database ID of the case this instance belongs to.
    • getEntityName

      String getEntityName()
      This method returns the name of the entity type of the instance.
      Returns:
      the name of the entity type of the instance.
    • getInstanceId

      GUID getInstanceId()
      This method returns the generated ID of the instance.
      Returns:
      the generated ID of the instance.
    • getInstanceName

      String getInstanceName()
      This method returns the name of the instance. The instance name is optional, and thus may be null.
      Returns:
      The name of the instance.
    • getValues

      List<ICaseDataValue> getValues()
      This method returns a list of values associated with this instance.
      Returns:
      the list of values associated with this instance.