Cómo asignar un valor a 2 variable en una línea en Java

String one, two, three;
one = two = three = "";
Vishal