File tree 1 file changed +12
-3
lines changed
google-cloud-storage/src/main/java/com/google/cloud/storage
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -795,17 +795,26 @@ public Long getMetageneration() {
795
795
return metageneration ;
796
796
}
797
797
798
- /** Returns the deletion time of the blob. */
798
+ /**
799
+ * Returns the deletion time of the blob expressed as the number of milliseconds since the Unix
800
+ * epoch.
801
+ */
799
802
public Long getDeleteTime () {
800
803
return deleteTime ;
801
804
}
802
805
803
- /** Returns the last modification time of the blob's metadata. */
806
+ /**
807
+ * Returns the last modification time of the blob's metadata expressed as the number of
808
+ * milliseconds since the Unix epoch.
809
+ */
804
810
public Long getUpdateTime () {
805
811
return updateTime ;
806
812
}
807
813
808
- /** Returns the creation time of the blob. */
814
+ /**
815
+ * Returns the creation time of the blob expressed as the number of milliseconds since the Unix
816
+ * epoch.
817
+ */
809
818
public Long getCreateTime () {
810
819
return createTime ;
811
820
}
You can’t perform that action at this time.
0 commit comments