Continue with your partner, one more time.
For this assignment, you will complete an implementation of the EncodingHelper application, as described below.
The EncodingHelperChar class from last time will be a big help, but you will now need to add facilities for parsing the command line arguments and, for some operations, converting strings (not just single characters) into various forms. Your EncodingHelper class will contain the main method for this program, but you'll also want to give it methods for string conversion.
For example, you might want to write a method that converts a character string (typically obtained from main's args parameter) into an array or ArrayList of EncodingHelper objects. As you design the methods you need, keep in mind the ideas articulated in Steve McConnell's High-Quality Routines.
Also, for each non-trivial method you add to your project, you should add at least one unit test method.
One-character string, default input and output.
Multi-character string, default input and output.
String input, UTF-8 output
Code point input, default output
UTF-8 input, code point output
Note that for the bash command line, and most others, if you want special characters like the backslash \ to be included properly in Java's main method "args" parameter, you need to enclose the command-line argument in single-quotation marks (i.e. apostrophes).
UTF-8 input, string output
Submit your program by committing it to your bitbucket repository and tagging it with a tag named "phase3".
Have fun!