Java obtém elementos únicos da matriz

String[] unique = Arrays.stream(array).distinct().toArray(String[]::new);
Bewildered Bison