Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.text.Format

Uses of Format in java.text
 

Subclasses of Format in java.text
 class ChoiceFormat
          This class allows a format to be specified based on a range of numbers.
 class DateFormat
           
 class DecimalFormat
           
 class MessageFormat
           
 class NumberFormat
          This is the abstract superclass of all classes which format and parse numeric values such as decimal numbers, integers, currency values, and percentages.
 class SimpleDateFormat
          SimpleDateFormat provides convenient methods for parsing and formatting dates using Gregorian calendars (see java.util.GregorianCalendar).
 

Fields in java.text declared as Format
(package private)  Format MessageFormat.MessageFormatElement.setFormat
           
(package private)  Format MessageFormat.MessageFormatElement.format
           
 

Methods in java.text that return Format
 Format[] MessageFormat.getFormats()
          Returns an array with the Formats for the arguments.
 Format[] MessageFormat.getFormatsByArgumentIndex()
          Return the formatters used sorted by argument index.
 

Methods in java.text with parameters of type Format
 void MessageFormat.setFormat(int variableNum, Format newFormat)
          Sets the format for the argument at an specified index.
 void MessageFormat.setFormats(Format[] newFormats)
          Sets the formats for the arguments.
 void MessageFormat.setFormatByArgumentIndex(int argumentIndex, Format newFormat)
          Set the format to used using the argument index number.
 void MessageFormat.setFormatsByArgumentIndex(Format[] newFormats)
          Set the format for argument using a specified array of formatters which is sorted according to the argument index.