public static final enum

NumberFormat.Style

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.springframework.format.annotation.NumberFormat.Style

Class Overview

Common number format styles.

Summary

Enum Values
NumberFormat.Style  CURRENCY  The currency format for the current locale. 
NumberFormat.Style  NUMBER  The general-purpose number format for the current locale. 
NumberFormat.Style  PERCENT  The percent format for the current locale. 
Public Methods
static NumberFormat.Style valueOf(String name)
final static Style[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final NumberFormat.Style CURRENCY

The currency format for the current locale.

public static final NumberFormat.Style NUMBER

The general-purpose number format for the current locale.

public static final NumberFormat.Style PERCENT

The percent format for the current locale.

Public Methods

public static NumberFormat.Style valueOf (String name)

public static final Style[] values ()