com.spire.doc.documents
Enum NumberFormat

java.lang.Object
  extended by java.lang.Enum<NumberFormat>
      extended by com.spire.doc.documents.NumberFormat
All Implemented Interfaces:
java.lang.Comparable<NumberFormat>

public enum NumberFormat
extends java.lang.Enum<NumberFormat>

Defines Number format.


Enum Constant Summary
Currency_Format
          Format which suites to "#?#0,00 $),(#?#0,00 $)" Word format.
Floating_Point
          Format with floating point number.
Floating_Point_Percent
          Floating point number in percents.
Floating_Point_With_Space
          Format which suites to "#?#0,00" Word format.
None
          No formatting
Whole_Number
          Format with while number.
Whole_Number_Percent
          Whole number in percents.
Whole_Number_With_Space
          Format which suits to "#?#0" Word format.
 
Method Summary
 int getValue()
           
 

Enum Constant Detail

None

public static final NumberFormat None
No formatting


Whole_Number

public static final NumberFormat Whole_Number
Format with while number.


Floating_Point

public static final NumberFormat Floating_Point
Format with floating point number.


Whole_Number_Percent

public static final NumberFormat Whole_Number_Percent
Whole number in percents.


Floating_Point_Percent

public static final NumberFormat Floating_Point_Percent
Floating point number in percents.


Whole_Number_With_Space

public static final NumberFormat Whole_Number_With_Space
Format which suits to "#?#0" Word format.


Floating_Point_With_Space

public static final NumberFormat Floating_Point_With_Space
Format which suites to "#?#0,00" Word format.


Currency_Format

public static final NumberFormat Currency_Format
Format which suites to "#?#0,00 $),(#?#0,00 $)" Word format.

Method Detail

getValue

public int getValue()