Interface EncodingStrategy

All Known Implementing Classes:
Base64EncodingStrategy

public interface EncodingStrategy
Strategy for encoding and decoding.
Author:
Lincoln Baxter, III
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    decode(String value)
    Decode the given value.
    encode(String value)
    Encode the given value.
  • Method Details

    • encode

      String encode(String value)
      Encode the given value.
    • decode

      String decode(String value)
      Decode the given value.