Method parse(String text, ParsePosition pos)
Return type:
java.util.Date
Member of:
java.text.SimpleDateFormat
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return format.parse(text, new ParsePosition(0));
2
d = TIME_FORMATTER.parse(lstart, p);
3
return dateFormat.parse(time.trim(),new ParsePosition(0)).getTime();
4
timeStamp = formatter.parse(timeString, pos);
5
Date d = sdf.parse(date, pp);
6
java.util.Date temp = format.parse(value, new ParsePosition(0));
7
date = formatter.parse(value, pos);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.