Interface ICaseDataValue

All Superinterfaces:
Serializable

public interface ICaseDataValue extends Serializable
This interface defines the properties for a single case data value from database.
Since:
7.1
Author:
O. Kerpershoek
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the name of the attribute the value is defined for.
    This method returns the value for the attribute.
    long
    This method returns the database ID of the case value.
    long
    This method returns the database ID of the instance the value belongs to.
  • Method Details

    • getId

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

      long getInstanceId()
      This method returns the database ID of the instance the value belongs to.
      Returns:
      the database ID of the instance the value belongs to.
    • getAttributeName

      String getAttributeName()
      This method returns the name of the attribute the value is defined for.
      Returns:
      the name of the attribute the value is defined for.
    • getAttributeValue

      IValue getAttributeValue()
      This method returns the value for the attribute.
      Returns:
      the value for the attribute.