cambiar un número positivo a un número negativo o negativo a positivo

static int changeNumberDirection(int number){
            return number * -1;
        }
Energetic Eagle