2222import org .apache .commons .codec .CodecPolicy ;
2323
2424/**
25- * Provides Hex encoding in a streaming fashion (unlimited size).
25+ * Provides Base16 encoding in a streaming fashion (unlimited size).
2626 * <p>
27- * The default behavior of the HexOutputStream is to ENCODE, whereas the default behavior of the
27+ * The default behavior of the Base16OutputStream is to ENCODE, whereas the default behavior of the
2828 * {@link Base16InputStream} is to DECODE. But this behavior can be overridden by using a different constructor.
2929 * </p>
3030 *
3333public class Base16OutputStream extends BaseNCodecOutputStream {
3434
3535 /**
36- * Constructs a Base16OutputStream such that all data written is Hex -encoded to the original provided OutputStream.
36+ * Constructs a Base16OutputStream such that all data written is Base16 -encoded to the original provided OutputStream.
3737 *
3838 * @param outputStream OutputStream to wrap.
3939 */
@@ -42,7 +42,7 @@ public Base16OutputStream(final OutputStream outputStream) {
4242 }
4343
4444 /**
45- * Constructs a Base16OutputStream such that all data written is either Hex -encoded or Hex -decoded to the
45+ * Constructs a Base16OutputStream such that all data written is either Base16 -encoded or Base16 -decoded to the
4646 * original provided OutputStream.
4747 *
4848 * @param outputStream OutputStream to wrap.
@@ -53,7 +53,7 @@ public Base16OutputStream(final OutputStream outputStream, final boolean doEncod
5353 }
5454
5555 /**
56- * Constructs a Base16OutputStream such that all data written is either Hex -encoded or Hex -decoded to the
56+ * Constructs a Base16OutputStream such that all data written is either Base16 -encoded or Base16 -decoded to the
5757 * original provided OutputStream.
5858 *
5959 * @param outputStream OutputStream to wrap.
@@ -65,7 +65,7 @@ public Base16OutputStream(final OutputStream outputStream, final boolean doEncod
6565 }
6666
6767 /**
68- * Constructs a Base16OutputStream such that all data written is either Hex -encoded or Hex -decoded to the
68+ * Constructs a Base16OutputStream such that all data written is either Base16 -encoded or Base16 -decoded to the
6969 * original provided OutputStream.
7070 *
7171 * @param outputStream OutputStream to wrap.
0 commit comments