Searched defs:ParsePosition (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DParsePosition.java43 * <code>ParsePosition</code> is a simple class used by <code>Format</code>
46 * classes requires a <code>ParsePosition</code> object as an argument.
50 * you can use the same <code>ParsePosition</code>, since the index parameter
57 public class ParsePosition { class
85 * Create a new ParsePosition with the given initial index.
87 public ParsePosition(int index) { method in class:ParsePosition
116 if (!(obj instanceof ParsePosition))
118 ParsePosition other = (ParsePosition) obj;
123 * Returns a hash code for this ParsePosition
[all...]

Completed in 284 milliseconds