Package net.sf.saxon.trans
Class DecimalSymbols
- java.lang.Object
-
- net.sf.saxon.trans.DecimalSymbols
-
- All Implemented Interfaces:
java.io.Serializable
public class DecimalSymbols extends java.lang.Object implements java.io.SerializableThis class is modelled on Java's DecimalFormatSymbols, but it allows the use of any Unicode character to represent symbols such as the decimal point and the grouping separator, whereas DecimalFormatSymbols restricts these to a char (1-65535). Since this is essentially a data structure with no behaviour, we don't bother with getter and setter methods but just expose the fields- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description intdecimalSeparatorintdigitintgroupingSeparatorjava.lang.StringinfinityintminusSignjava.lang.StringNaNintpatternSeparatorintpercentintpermillintzeroDigit
-
Constructor Summary
Constructors Constructor Description DecimalSymbols()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
decimalSeparator
public int decimalSeparator
-
groupingSeparator
public int groupingSeparator
-
digit
public int digit
-
minusSign
public int minusSign
-
percent
public int percent
-
permill
public int permill
-
zeroDigit
public int zeroDigit
-
patternSeparator
public int patternSeparator
-
infinity
public java.lang.String infinity
-
NaN
public java.lang.String NaN
-
-