Interface FixedPointConstants

  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    static final byte
    A return value which indicates that a lhs has changed, and the statement might need to be evaluated again.
    static final byte
    A return value which indicates that lhs has changed, and the statement need not be evaluated again.
    static final int
    The bit-mask which defines the "CHANGED" flag
    static final int
    The bit-mask which defines the "FIXED" flag
    static final byte
    A return value which indicates that lhs has not changed, and the statement might need to be evaluated again.
    static final byte
    A return value which indicates that lhs has not changed, and the statement need not be evaluated again.
    static final int
    The bit-mask which defines the "SIDE EFFECT" flag
  • Field Details Link icon

    • CHANGED Link icon

      static final byte CHANGED
      A return value which indicates that a lhs has changed, and the statement might need to be evaluated again.
      See Also:
    • NOT_CHANGED Link icon

      static final byte NOT_CHANGED
      A return value which indicates that lhs has not changed, and the statement might need to be evaluated again.
      See Also:
    • CHANGED_AND_FIXED Link icon

      static final byte CHANGED_AND_FIXED
      A return value which indicates that lhs has changed, and the statement need not be evaluated again.
      See Also:
    • NOT_CHANGED_AND_FIXED Link icon

      static final byte NOT_CHANGED_AND_FIXED
      A return value which indicates that lhs has not changed, and the statement need not be evaluated again.
      See Also:
    • CHANGED_MASK Link icon

      static final int CHANGED_MASK
      The bit-mask which defines the "CHANGED" flag
      See Also:
    • FIXED_MASK Link icon

      static final int FIXED_MASK
      The bit-mask which defines the "FIXED" flag
      See Also:
    • SIDE_EFFECT_MASK Link icon

      static final int SIDE_EFFECT_MASK
      The bit-mask which defines the "SIDE EFFECT" flag
      See Also: