Java in a Nutshell Online Quick Reference for Java 1.1

CLASS java.text.DecimalFormatSymbols

Availability: JDK 1.1

public final class DecimalFormatSymbols extends Object implements Cloneable, Serializable {
   // Public Constructors
      public DecimalFormatSymbols();
      public DecimalFormatSymbols(Locale locale);
   // Public Instance Methods
      public Object clone();  // Overrides Object.clone()
      public boolean equals(Object obj);  // Overrides Object.equals()
      public char getDecimalSeparator();
      public char getDigit();
      public char getGroupingSeparator();
      public String getInfinity();
      public char getMinusSign();
      public String getNaN();
      public char getPatternSeparator();
      public char getPerMill();
      public char getPercent();
      public char getZeroDigit();
      public int hashCode();  // Overrides Object.hashCode()
      public void setDecimalSeparator(char decimalSeparator);
      public void setDigit(char digit);
      public void setGroupingSeparator(char groupingSeparator);
      public void setInfinity(String infinity);
      public void setMinusSign(char minusSign);
      public void setNaN(String NaN);
      public void setPatternSeparator(char patternSeparator);
      public void setPerMill(char perMill);
      public void setPercent(char percent);
      public void setZeroDigit(char zeroDigit);
}

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.