List of usage examples for java.text DecimalFormat getRoundingMode
@Override
public RoundingMode getRoundingMode()
From source file:Main.java
public static void main(String[] argv) throws Exception { DecimalFormat format = new DecimalFormat(); System.out.println(format.getRoundingMode().name()); }