Interface BinaryObject.Transformer<BO extends BinaryObject>

Type Parameters:
BO - the BinaryObject type.
Enclosing interface:
BinaryObject
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface BinaryObject.Transformer<BO extends BinaryObject>
Transformer interface for transform calls.
Since:
2.1.0
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    transform(BO object, int index)
    Transforms the provided object.
  • Method Details

    • transform

      void transform(BO object, int index)
      Transforms the provided object. The provided object reference may not be distinct each call. Do not save the reference passed to this function anywhere.
      Parameters:
      object - the object to transform.
      index - the sequence index of the object.