- java.lang.Object
-
- java.nio.file.attribute.FileTime
-
- All Implemented Interfaces:
- Comparable<FileTime>
public final class FileTime extends Object implements Comparable<FileTime>
-
-
Method Summary
Methods Modifier and Type Method and Description int
compareTo(FileTime other)
Compares the value of twoFileTime
objects for order.boolean
equals(Object obj)
Tests thisFileTime
for equality with the given object.static FileTime
from(long value, TimeUnit unit)
Returns aFileTime
representing a value at the given unit of granularity.static FileTime
fromMillis(long value)
Returns aFileTime
representing the given value in milliseconds.int
hashCode()
Computes a hash code for this file time.long
to(TimeUnit unit)
Returns the value at the given unit of granularity.long
toMillis()
Returns the value in milliseconds.String
toString()
Returns the string representation of thisFileTime
.
-
-
-
Method Detail
-
from
public static FileTime from(long value, TimeUnit unit)
Returns aFileTime
representing a value at the given unit of granularity.- Parameters:
value
- the value since the epoch (1970-01-01T00:00:00Z); can be negativeunit
- the unit of granularity to interpret the value- Returns:
- a
FileTime
representing the given value
-
fromMillis
public static FileTime fromMillis(long value)
Returns aFileTime
representing the given value in milliseconds.- Parameters:
value
- the value, in milliseconds, since the epoch (1970-01-01T00:00:00Z); can be negative- Returns:
- a
FileTime
representing the given value
-
to
public long to(TimeUnit unit)
Returns the value at the given unit of granularity.Conversion from a coarser granularity that would numerically overflow saturate to
Long.MIN_VALUE
if negative orLong.MAX_VALUE
if positive.- Parameters:
unit
- the unit of granularity for the return value- Returns:
- value in the given unit of granularity, since the epoch since the epoch (1970-01-01T00:00:00Z); can be negative
-
toMillis
public long toMillis()
Returns the value in milliseconds.Conversion from a coarser granularity that would numerically overflow saturate to
Long.MIN_VALUE
if negative orLong.MAX_VALUE
if positive.- Returns:
- the value in milliseconds, since the epoch (1970-01-01T00:00:00Z)
-
equals
public boolean equals(Object obj)
Tests thisFileTime
for equality with the given object.The result is
true
if and only if the argument is notnull
and is aFileTime
that represents the same time. This method satisfies the general contract of theObject.equals
method.- Overrides:
equals
in classObject
- Parameters:
obj
- the object to compare with- Returns:
true
if, and only if, the given object is aFileTime
that represents the same time- See Also:
Object.hashCode()
,HashMap
-
hashCode
public int hashCode()
Computes a hash code for this file time.The hash code is based upon the value represented, and satisfies the general contract of the
Object.hashCode()
method.- Overrides:
hashCode
in classObject
- Returns:
- the hash-code value
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
compareTo
public int compareTo(FileTime other)
Compares the value of twoFileTime
objects for order.- Specified by:
compareTo
in interfaceComparable<FileTime>
- Parameters:
other
- the otherFileTime
to be compared- Returns:
0
if thisFileTime
is equal toother
, a value less than 0 if thisFileTime
represents a time that is beforeother
, and a value greater than 0 if thisFileTime
represents a time that is afterother
-
toString
public String toString()
Returns the string representation of thisFileTime
. The string is returned in the ISO 8601 format:YYYY-MM-DDThh:mm:ss[.s+]Z
where "[.s+]
" represents a dot followed by one of more digits for the decimal fraction of a second. It is only present when the decimal fraction of a second is not zero. For example,FileTime.fromMillis(1234567890000L).toString()
yields"2009-02-13T23:31:30Z"
, andFileTime.fromMillis(1234567890123L).toString()
yields"2009-02-13T23:31:30.123Z"
.A
FileTime
is primarily intended to represent the value of a file's time stamp. Where used to represent extreme values, where the year is less than "0001
" or greater than "9999
" then this method deviates from ISO 8601 in the same manner as the XML Schema language. That is, the year may be expanded to more than four digits and may be negative-signed. If more than four digits then leading zeros are not present. The year before "0001
" is "-0001
".
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/nio/file/attribute/FileTime.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.