Uses of Class
step.encoding.Strategy

Packages that use Strategy
step.encoding Provides the default STEP encoding strategies and meta-data records. 
step.encoding.profile Provides augmented versions of some standard encoding strategies that record and display various encoding statistics. 
 

Uses of Strategy in step.encoding
 

Subclasses of Strategy in step.encoding
 class CacheStrategy
          Use a simple caching strategy to replace values with a reference to a cache slot.
 class ConstantStrategy
          Assume values are mostly the same.
 class DeltaIntStrategy
          Assume that the next (integer) value is relatively close to the last, and only transmit on the difference from the last value.
 class IdentifierStrategy
          Assume that values derive from a relatively small, fixed distribution.
 class OffsetIntStrategy
          Instead of transmitting the absolute (integer) value, transmit the offset from a fixed base value.
 class RegularValueStrategy
          Assume that values appear in some regular pattern.
 class StrideIntStrategy
          Assume that the (integer) values increase or decrease with a regular increment.
 class WindowIntStrategy
          Assume (integer) values are in the neighborhood of a base value, and transmit the offset from the base.
 

Uses of Strategy in step.encoding.profile
 

Subclasses of Strategy in step.encoding.profile
 class PCacheStrategy
           
 class PConstantStrategy
           
 class PDeltaIntStrategy
           
 class PIdentifierStrategy
           
 class PStrideIntStrategy
           
 class PWindowIntStrategy