-
Notifications
You must be signed in to change notification settings - Fork 3
/
Timestamp.xml
587 lines (587 loc) · 36.6 KB
/
Timestamp.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
<Type Name="Timestamp" FullName="Java.Sql.Timestamp">
<TypeSignature Language="C#" Value="public class Timestamp : Java.Util.Date" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit Timestamp extends Java.Util.Date" />
<TypeSignature Language="DocId" Value="T:Java.Sql.Timestamp" />
<TypeSignature Language="F#" Value="type Timestamp = class
 inherit Date" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Java.Util.Date</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("java/sql/Timestamp", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("java/sql/Timestamp", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>A thin wrapper around <c>java.util.Date</c> that allows
the JDBC API to identify this as an SQL <c>TIMESTAMP</c> value.</summary>
<remarks>
<para>A thin wrapper around <c>java.util.Date</c> that allows
the JDBC API to identify this as an SQL <c>TIMESTAMP</c> value.
It adds the ability
to hold the SQL <c>TIMESTAMP</c> fractional seconds value, by allowing
the specification of fractional seconds to a precision of nanoseconds.
A Timestamp also provides formatting and
parsing operations to support the JDBC escape syntax for timestamp values.</para>
<para>The precision of a Timestamp object is calculated to be either:
<ul>
<li><c>19 </c>, which is the number of characters in yyyy-mm-dd hh:mm:ss
<li> <c> 20 + s </c>, which is the number
of characters in the yyyy-mm-dd hh:mm:ss.[fff...] and <c>s</c> represents the scale of the given Timestamp,
its fractional seconds precision.
</ul></para>
<para><B>Note:</B> This type is a composite of a <c>java.util.Date</c> and a
separate nanoseconds value. Only integral seconds are stored in the
<c>java.util.Date</c> component. The fractional seconds - the nanos - are
separate. The <c>Timestamp.equals(Object)</c> method never returns
<c>true</c> when passed an object
that isn't an instance of <c>java.sql.Timestamp</c>,
because the nanos component of a date is unknown.
As a result, the <c>Timestamp.equals(Object)</c>
method is not symmetric with respect to the
<c>java.util.Date.equals(Object)</c>
method. Also, the <c>hashCode</c> method uses the underlying
<c>java.util.Date</c>
implementation and therefore does not include nanos in its computation.</para>
<para>Due to the differences between the <c>Timestamp</c> class
and the <c>java.util.Date</c>
class mentioned above, it is recommended that code not view
<c>Timestamp</c> values generically as an instance of
<c>java.util.Date</c>. The
inheritance relationship between <c>Timestamp</c>
and <c>java.util.Date</c> really
denotes implementation inheritance, and not type inheritance.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp" title="Reference documentation">Java documentation for <code>java.sql.Timestamp</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Timestamp (long time);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(int64 time) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.#ctor(System.Int64)" />
<MemberSignature Language="F#" Value="new Java.Sql.Timestamp : int64 -> Java.Sql.Timestamp" Usage="new Java.Sql.Timestamp time" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(J)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(J)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="time" Type="System.Int64" />
</Parameters>
<Docs>
<param name="time">milliseconds since January 1, 1970, 00:00:00 GMT.
A negative number is the number of milliseconds before
January 1, 1970, 00:00:00 GMT.</param>
<summary>Constructs a <c>Timestamp</c> object
using a milliseconds time value.</summary>
<remarks>
<para>Constructs a <c>Timestamp</c> object
using a milliseconds time value. The
integral seconds are stored in the underlying date value; the
fractional seconds are stored in the <c>nanos</c> field of
the <c>Timestamp</c> object.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#Timestamp(long)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.Timestamp(long)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected Timestamp (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(native int javaReference, valuetype Android.Runtime.JniHandleOwnership transfer) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Java.Sql.Timestamp : nativeint * Android.Runtime.JniHandleOwnership -> Java.Sql.Timestamp" Usage="new Java.Sql.Timestamp (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="javaReference" Type="System.IntPtr" />
<Parameter Name="transfer" Type="Android.Runtime.JniHandleOwnership" />
</Parameters>
<Docs>
<param name="javaReference">A <see cref="T:System.IntPtr" />containing a Java Native Interface (JNI) object reference.</param>
<param name="transfer">A <see cref="T:Android.Runtime.JniHandleOwnership" />indicating how to handle <paramref name="javaReference" /></param>
<summary>A constructor used when creating managed representations of JNI objects; called by the runtime.</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Timestamp (int year, int month, int date, int hour, int minute, int second, int nano);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(int32 year, int32 month, int32 date, int32 hour, int32 minute, int32 second, int32 nano) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)" />
<MemberSignature Language="F#" Value="new Java.Sql.Timestamp : int * int * int * int * int * int * int -> Java.Sql.Timestamp" Usage="new Java.Sql.Timestamp (year, month, date, hour, minute, second, nano)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(IIIIIII)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(IIIIIII)V", "")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="year" Type="System.Int32" />
<Parameter Name="month" Type="System.Int32" />
<Parameter Name="date" Type="System.Int32" />
<Parameter Name="hour" Type="System.Int32" />
<Parameter Name="minute" Type="System.Int32" />
<Parameter Name="second" Type="System.Int32" />
<Parameter Name="nano" Type="System.Int32" />
</Parameters>
<Docs>
<param name="year">the year minus 1900</param>
<param name="month">0 to 11</param>
<param name="date">1 to 31</param>
<param name="hour">0 to 23</param>
<param name="minute">0 to 59</param>
<param name="second">0 to 59</param>
<param name="nano">0 to 999,999,999</param>
<summary>Constructs a <c>Timestamp</c> object initialized
with the given values.</summary>
<remarks>
<para>Constructs a <c>Timestamp</c> object initialized
with the given values.</para>
<para>This member is deprecated. instead use the constructor <c>Timestamp(long millis)</c></para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#Timestamp(int,%20int,%20int,%20int,%20int,%20int,%20int)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.Timestamp(int, int, int, int, int, int, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
<exception cref="T:Java.Lang.IllegalArgumentException">if any of the parameters is out of range.
</exception>
</Docs>
</Member>
<Member MemberName="After">
<MemberSignature Language="C#" Value="public virtual bool After (Java.Sql.Timestamp? ts);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool After(class Java.Sql.Timestamp ts) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.After(Java.Sql.Timestamp)" />
<MemberSignature Language="F#" Value="override this.After : Java.Sql.Timestamp -> bool" Usage="timestamp.After ts" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("after", "(Ljava/sql/Timestamp;)Z", "GetAfter_Ljava_sql_Timestamp_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("after", "(Ljava/sql/Timestamp;)Z", "GetAfter_Ljava_sql_Timestamp_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ts" Type="Java.Sql.Timestamp" />
</Parameters>
<Docs>
<param name="ts">the <c>Timestamp</c> value to compare with</param>
<summary>Indicates whether this <c>Timestamp</c> object is
later than the given <c>Timestamp</c> object.</summary>
<returns>
<c>true</c> if this <c>Timestamp</c> object is later;
<c>false</c> otherwise</returns>
<remarks>
<para>Indicates whether this <c>Timestamp</c> object is
later than the given <c>Timestamp</c> object.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#after(java.sql.Timestamp)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.after(java.sql.Timestamp)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="Before">
<MemberSignature Language="C#" Value="public virtual bool Before (Java.Sql.Timestamp? ts);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Before(class Java.Sql.Timestamp ts) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.Before(Java.Sql.Timestamp)" />
<MemberSignature Language="F#" Value="override this.Before : Java.Sql.Timestamp -> bool" Usage="timestamp.Before ts" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("before", "(Ljava/sql/Timestamp;)Z", "GetBefore_Ljava_sql_Timestamp_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("before", "(Ljava/sql/Timestamp;)Z", "GetBefore_Ljava_sql_Timestamp_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ts" Type="Java.Sql.Timestamp" />
</Parameters>
<Docs>
<param name="ts">the <c>Timestamp</c> value to compare with</param>
<summary>Indicates whether this <c>Timestamp</c> object is
earlier than the given <c>Timestamp</c> object.</summary>
<returns>
<c>true</c> if this <c>Timestamp</c> object is earlier;
<c>false</c> otherwise</returns>
<remarks>
<para>Indicates whether this <c>Timestamp</c> object is
earlier than the given <c>Timestamp</c> object.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#before(java.sql.Timestamp)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.before(java.sql.Timestamp)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="CompareTo">
<MemberSignature Language="C#" Value="public virtual int CompareTo (Java.Sql.Timestamp? ts);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int32 CompareTo(class Java.Sql.Timestamp ts) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.CompareTo(Java.Sql.Timestamp)" />
<MemberSignature Language="F#" Value="override this.CompareTo : Java.Sql.Timestamp -> int" Usage="timestamp.CompareTo ts" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("compareTo", "(Ljava/sql/Timestamp;)I", "GetCompareTo_Ljava_sql_Timestamp_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("compareTo", "(Ljava/sql/Timestamp;)I", "GetCompareTo_Ljava_sql_Timestamp_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ts" Type="Java.Sql.Timestamp" />
</Parameters>
<Docs>
<param name="ts">the <c>Timestamp</c> object to be compared to
this <c>Timestamp</c> object</param>
<summary>Compares this <c>Timestamp</c> object to the given
<c>Timestamp</c> object.</summary>
<returns>the value <c>0</c> if the two <c>Timestamp</c>
objects are equal; a value less than <c>0</c> if this
<c>Timestamp</c> object is before the given argument;
and a value greater than <c>0</c> if this
<c>Timestamp</c> object is after the given argument.</returns>
<remarks>
<para>Compares this <c>Timestamp</c> object to the given
<c>Timestamp</c> object.</para>
<para>Added in 1.4.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#compareTo(java.sql.Timestamp)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.compareTo(java.sql.Timestamp)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="Equals">
<MemberSignature Language="C#" Value="public virtual bool Equals (Java.Sql.Timestamp? ts);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Equals(class Java.Sql.Timestamp ts) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.Equals(Java.Sql.Timestamp)" />
<MemberSignature Language="F#" Value="override this.Equals : Java.Sql.Timestamp -> bool" Usage="timestamp.Equals ts" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("equals", "(Ljava/sql/Timestamp;)Z", "GetEquals_Ljava_sql_Timestamp_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("equals", "(Ljava/sql/Timestamp;)Z", "GetEquals_Ljava_sql_Timestamp_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="ts" Type="Java.Sql.Timestamp" />
</Parameters>
<Docs>
<param name="ts">the <c>Timestamp</c> value to compare with</param>
<summary>Tests to see if this <c>Timestamp</c> object is
equal to the given <c>Timestamp</c> object.</summary>
<returns>
<c>true</c> if the given <c>Timestamp</c>
object is equal to this <c>Timestamp</c> object;
<c>false</c> otherwise</returns>
<remarks>
<para>Tests to see if this <c>Timestamp</c> object is
equal to the given <c>Timestamp</c> object.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#equals(java.sql.Timestamp)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.equals(java.sql.Timestamp)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="JniPeerMembers">
<MemberSignature Language="C#" Value="public override Java.Interop.JniPeerMembers JniPeerMembers { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Java.Interop.JniPeerMembers JniPeerMembers" />
<MemberSignature Language="DocId" Value="P:Java.Sql.Timestamp.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Java.Sql.Timestamp.JniPeerMembers" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Interop.JniPeerMembers</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="Nanos">
<MemberSignature Language="C#" Value="public virtual int Nanos { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 Nanos" />
<MemberSignature Language="DocId" Value="P:Java.Sql.Timestamp.Nanos" />
<MemberSignature Language="F#" Value="member this.Nanos : int with get, set" Usage="Java.Sql.Timestamp.Nanos" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getNanos", "()I", "GetGetNanosHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getNanos", "()I", "GetGetNanosHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setNanos", "(I)V", "GetSetNanos_IHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setNanos", "(I)V", "GetSetNanos_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<param name="n">the new fractional seconds component</param>
<summary>Gets this <c>Timestamp</c> object's <c>nanos</c> value. -or- Sets this <c>Timestamp</c> object's <c>nanos</c> field
to the given value.</summary>
<value>this <c>Timestamp</c> object's fractional seconds component</value>
<remarks>
<para>Property getter documentation:</para>
<para>Gets this <c>Timestamp</c> object's <c>nanos</c> value.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#getNanos()" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.getNanos()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Sets this <c>Timestamp</c> object's <c>nanos</c> field
to the given value.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#setNanos(int)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.setNanos(int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
<exception cref="T:Java.Lang.IllegalArgumentException">if number of nanoseconds smaller than 0 or greater than
999,999,999.
</exception>
</Docs>
</Member>
<Member MemberName="ThresholdClass">
<MemberSignature Language="C#" Value="protected override IntPtr ThresholdClass { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance native int ThresholdClass" />
<MemberSignature Language="DocId" Value="P:Java.Sql.Timestamp.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Java.Sql.Timestamp.ThresholdClass" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.IntPtr</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.IntPtr" /> which contains the <c>java.lang.Class</c> JNI value corresponding to this type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ThresholdType">
<MemberSignature Language="C#" Value="protected override Type ThresholdType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type ThresholdType" />
<MemberSignature Language="DocId" Value="P:Java.Sql.Timestamp.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Java.Sql.Timestamp.ThresholdType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.Type" /> which provides the declaring type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ValueOf">
<MemberSignature Language="C#" Value="public static Java.Sql.Timestamp? ValueOf (string? s);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Java.Sql.Timestamp ValueOf(string s) cil managed" />
<MemberSignature Language="DocId" Value="M:Java.Sql.Timestamp.ValueOf(System.String)" />
<MemberSignature Language="F#" Value="static member ValueOf : string -> Java.Sql.Timestamp" Usage="Java.Sql.Timestamp.ValueOf s" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("valueOf", "(Ljava/lang/String;)Ljava/sql/Timestamp;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("valueOf", "(Ljava/lang/String;)Ljava/sql/Timestamp;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Sql.Timestamp</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="s" Type="System.String" />
</Parameters>
<Docs>
<param name="s">timestamp in format <c>yyyy-[m]m-[d]d hh:mm:ss[.f...]</c>. The
fractional seconds may be omitted. The leading zero for <c>mm</c>
and <c>dd</c> may also be omitted.</param>
<summary>Converts a <c>String</c> object in JDBC timestamp escape format to a
<c>Timestamp</c> value.</summary>
<returns>corresponding <c>Timestamp</c> value</returns>
<remarks>
<para>Converts a <c>String</c> object in JDBC timestamp escape format to a
<c>Timestamp</c> value.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/java/sql/Timestamp#valueOf(java.lang.String)" title="Reference documentation">Java documentation for <code>java.sql.Timestamp.valueOf(java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
<exception cref="T:Java.Lang.IllegalArgumentException">if the provided string is <c>null</c>.
</exception>
</Docs>
</Member>
</Members>
</Type>