Method valueOf(String s)
Return type:
java.sql.Timestamp
Member of:
java.sql.Timestamp
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return java.sql.Timestamp.valueOf((String)raw);
2
return new Date(Timestamp.valueOf(aString).getTime());
3
return Timestamp.valueOf(aString);
4
this.contributed = Timestamp.valueOf(contributedDisplay);
5
super(Timestamp.valueOf(getJDBCEscapeFormat(year, month, day, hour, minute, second)).getTime());
6
return (Timestamp.valueOf(value.toString()));
7
set(name, java.sql.Timestamp.valueOf(value));
8
timeValue = Timestamp.valueOf(stringValue);
9
setTimestamp (parameterIndex, java.sql.Timestamp.valueOf (x));
10
ts = Timestamp.valueOf(value.toString());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.