Interface IntSource

All Known Implementing Classes:
CountArrayFunction, IntegerInvoker, MaxArrayFunction.Integer, MaxTraceFunction.Integer, MinArrayFunction.Integer, MinTraceFunction.Integer, MultiTraceFunction.Integer, SumArrayFunction.Integer

public interface IntSource
Used by statistical object to access integer 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
    int
    getIntValue(@NonNull Enum<?> variableID)
    Returns the integer value corresponding to the given variableID
  • Method Details

    • getIntValue

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