Package org.apache.sshd.sftp.server
Class UnixDateFormat
- java.lang.Object
-
- org.apache.sshd.sftp.server.UnixDateFormat
-
public final class UnixDateFormat extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.List<java.lang.String>
MONTHS
AList
of short months names where Jan=0, Feb=1, etc.static long
SIX_MONTHS
Six months duration in msec.
-
Constructor Summary
Constructors Modifier Constructor Description private
UnixDateFormat()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
getUnixDate(long millis)
static java.lang.String
getUnixDate(java.nio.file.attribute.FileTime time)
Get unix style date string.
-
-
-
Field Detail
-
MONTHS
public static final java.util.List<java.lang.String> MONTHS
AList
of short months names where Jan=0, Feb=1, etc.
-
SIX_MONTHS
public static final long SIX_MONTHS
Six months duration in msec.- See Also:
- Constant Field Values
-
-
Method Detail
-
getUnixDate
public static java.lang.String getUnixDate(java.nio.file.attribute.FileTime time)
Get unix style date string.- Parameters:
time
- TheFileTime
to format - ignored ifnull
- Returns:
- The formatted date string
- See Also:
getUnixDate(long)
-
getUnixDate
public static java.lang.String getUnixDate(long millis)
-
-