Class BinaryDataStrategy

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String BASE_64
      Using this strategy, binary data is encoded using the Base64 encoding scheme as specified in RFC 4648 and RFC 2045.
      static java.lang.String BASE_64_URL
      Using this strategy, binary data is encoded using the "URL and Filename safe Base64 Alphabet" as specified in Table 2 of RFC 4648.
      static java.lang.String BYTE
      Using this strategy, binary data is encoded as a byte array.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private BinaryDataStrategy()
      Private constructor to disallow instantiation.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • BYTE

        public static final java.lang.String BYTE
        Using this strategy, binary data is encoded as a byte array. Default encoding strategy.
        See Also:
        Constant Field Values
      • BASE_64

        public static final java.lang.String BASE_64
        Using this strategy, binary data is encoded using the Base64 encoding scheme as specified in RFC 4648 and RFC 2045.
        See Also:
        Constant Field Values
      • BASE_64_URL

        public static final java.lang.String BASE_64_URL
        Using this strategy, binary data is encoded using the "URL and Filename safe Base64 Alphabet" as specified in Table 2 of RFC 4648.
        See Also:
        Constant Field Values
    • Constructor Detail

      • BinaryDataStrategy

        private BinaryDataStrategy()
        Private constructor to disallow instantiation.