What is the difference between CharSequence[] and String[]?
What is the difference between CharSequence[] and String[]?
String is the parent class that implements the interface CharSequence.
There are other classes which also implement the CharSequence like StringBuffer, StringBuilder, etc.