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>MONTHSAListof short months names where Jan=0, Feb=1, etc.static longSIX_MONTHSSix months duration in msec.
-
Constructor Summary
Constructors Modifier Constructor Description privateUnixDateFormat()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringgetUnixDate(long millis)static java.lang.StringgetUnixDate(java.nio.file.attribute.FileTime time)Get unix style date string.
-
-
-
Field Detail
-
MONTHS
public static final java.util.List<java.lang.String> MONTHS
AListof 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- TheFileTimeto format - ignored ifnull- Returns:
- The formatted date string
- See Also:
getUnixDate(long)
-
getUnixDate
public static java.lang.String getUnixDate(long millis)
-
-