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

/libcore/ojluni/src/main/java/java/nio/file/attribute/
H A DFileTime.java48 public final class FileTime class in inherits:Comparable
49 implements Comparable<FileTime>
53 * this {@code FileTime} is converted from an {@code Instant},
77 private FileTime(long value, TimeUnit unit, Instant instant) { method in class:FileTime
84 * Returns a {@code FileTime} representing a value at the given unit of
93 * @return a {@code FileTime} representing the given value
95 public static FileTime from(long value, TimeUnit unit) {
97 return new FileTime(value, unit, null);
101 * Returns a {@code FileTime} representing the given value in milliseconds.
107 * @return a {@code FileTime} representin
[all...]

Completed in 48 milliseconds