Variant without boxing:
int[] sorted = IntStream.of(a) .map( i -> -i) .sorted() .map( i -> -i) .toArray();