List of usage examples for java.text NumberFormat clone
@Override
public Object clone()
From source file:Main.java
public static void main(String[] args) throws Exception { NumberFormat numberFormat = NumberFormat.getPercentInstance(); System.out.println(numberFormat.clone()); }