All Packages Class Hierarchy This Package Previous Next Index
Class net.fsp.FSPstat
java.lang.Object
|
+----net.fsp.FSPstat
- public class FSPstat
- extends Object
class for holding stat information about file.
There are no get/set methods defined. Use public variables directly
for data access.
-
lastmod
- last modification time in standard Java timeunits
-
length
- length
-
name
- name
-
RDTYPE_DIR
- object is a directory
-
RDTYPE_FILE
- object type is a file
-
type
- object type
-
FSPstat()
-
-
toString()
- converts stat information to human-readable string
name
public String name
- name
length
public long length
- length
lastmod
public long lastmod
- last modification time in standard Java timeunits
type
public byte type
- object type
RDTYPE_FILE
public static final byte RDTYPE_FILE
- object type is a file
RDTYPE_DIR
public static final byte RDTYPE_DIR
- object is a directory
FSPstat
public FSPstat()
toString
public String toString()
- converts stat information to human-readable string
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index