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

Quick Search    Search Deep

Uses of Class
java.text.ParsePosition

Uses of ParsePosition in java.text
 

Methods in java.text with parameters of type ParsePosition
abstract  java.lang.Object Format.parseObject(java.lang.String str, ParsePosition pos)
          This method parses a String and converts the parsed contents into an Object.
 java.lang.Object[] MessageFormat.parse(java.lang.String sourceStr, ParsePosition pos)
          Parse a string sourceStr against the pattern specified to the MessageFormat constructor.
 java.lang.Object MessageFormat.parseObject(java.lang.String sourceStr, ParsePosition pos)
           
abstract  java.util.Date DateFormat.parse(java.lang.String source, ParsePosition pos)
          This method parses the specified String into a Date.
 java.lang.Object DateFormat.parseObject(java.lang.String source, ParsePosition pos)
          This method is identical to parse(String, ParsePosition), but returns its result as an Object instead of a Date.
private  boolean SimpleDateFormat.expect(java.lang.String source, ParsePosition pos, char ch)
           
 java.util.Date SimpleDateFormat.parse(java.lang.String dateStr, ParsePosition pos)
          This method parses the specified string into a date.
private  java.lang.Integer SimpleDateFormat.computeOffset(java.lang.String zoneString, ParsePosition pos)
           Computes the time zone offset in milliseconds relative to GMT, based on the supplied String representation.
abstract  java.lang.Number NumberFormat.parse(java.lang.String sourceStr, ParsePosition pos)
          This method parses the specified string into a Number.
 java.lang.Object NumberFormat.parseObject(java.lang.String sourceStr, ParsePosition pos)
          This method parses the specified string into an Object.
 java.lang.Number DecimalFormat.parse(java.lang.String str, ParsePosition pos)
           
 java.lang.Number ChoiceFormat.parse(java.lang.String sourceStr, ParsePosition pos)
          I'm not sure what this method is really supposed to do, as it is not documented.