Interface ObjectSource


public interface ObjectSource
Used by statistical object to access object data. Each variable must have a unique integer id.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static enum 
     
  • Method Summary

    Modifier and Type
    Method
    Description
    @NonNull Object
    getObjectValue(@NonNull Enum<?> variableID)
    Returns the value corresponding to the given variableID
  • Method Details

    • getObjectValue

      @NonNull @NonNull Object getObjectValue(@NonNull @NonNull Enum<?> variableID)
      Returns the value corresponding to the given variableID
      Parameters:
      variableID - A unique identifier for a variable.
      Returns:
      The current value of the required variable.
      Throws:
      NullPointerException - when variableID is null.