Example usage for java.text DecimalFormat getNegativeSuffix

List of usage examples for java.text DecimalFormat getNegativeSuffix

Introduction

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

Prototype

public String getNegativeSuffix() 

Source Link

Document

Get the negative suffix.

Usage

From source file:Main.java

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

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

}