Como atribuir um valor a 2 variável em uma linha em java

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