java.lang.Object
io.fluxcapacitor.javaclient.common.serialization.casting.CastParameters

public class CastParameters extends Object
Represents metadata that uniquely identifies a version of a serialized data type, along with an optional delta indicating how the revision should change after casting.

This class is used by AnnotatedCaster and related casting infrastructure to determine whether a caster method applies to a given serialized object and to track how the data version should evolve through casting.

Example: If a method is annotated to cast from type "Order" revision 1 to revision 2, it would be represented with:

 new CastParameters("Order", 1, 1)
 
  • Constructor Details

    • CastParameters

      public CastParameters()