Example usage for java.text DecimalFormat isDecimalSeparatorAlwaysShown

List of usage examples for java.text DecimalFormat isDecimalSeparatorAlwaysShown

Introduction

In this page you can find the example usage for java.text DecimalFormat isDecimalSeparatorAlwaysShown.

Prototype

public boolean isDecimalSeparatorAlwaysShown() 

Source Link

Document

Allows you to get the behavior of the decimal separator with integers.

Usage

From source file:Main.java

public static void main(String[] argv) throws Exception {
    DecimalFormat format = new DecimalFormat();

    System.out.println(format.isDecimalSeparatorAlwaysShown());

}