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

/libcore/luni/src/main/java/java/text/
H A DParsePosition.java25 public class ParsePosition { class
30 * Constructs a new {@code ParsePosition} with the specified index.
35 public ParsePosition(int index) { method in class:ParsePosition
40 * Compares the specified object to this {@code ParsePosition} and indicates
42 * instance of {@code ParsePosition} and it must have the same index and
48 * {@code ParsePosition}; {@code false} otherwise.
53 if (!(object instanceof ParsePosition)) {
56 ParsePosition pos = (ParsePosition) object;

Completed in 44 milliseconds