- java.lang.Object
-
- de.ibapl.jnhw.posix.sys.Stat
-
@Include("#include <sys/stat.h>") public class Stat extends Object
Wrapper around the<sys/stat.h>header. See specs at: sys/stat.h - data returned by the stat() function.- Author:
- aploese
-
-
Field Summary
Fields Modifier and Type Field Description static booleanHAVE_SYS_STAT_Hstatic intS_IRGRPPOSIX: Read permission, group; Numeric value: 040.static intS_IROTHPOSIX: Read permission, others; Numeric value: 04.static intS_IRUSRPOSIX: Read permission, owner; Numeric value: 0400.static intS_IRWXGPOSIX: Read, write, execute/search by group; Numeric value: 070.static intS_IRWXOPOSIX: Read, write, execute/search by others; Numeric value: 07.static intS_IRWXUPOSIX: Read, write, execute/search by owner; Numeric value: 0700.static intS_ISGIDPOSIX: Set-group-ID on execution; Numeric value: 02000.static intS_ISUIDPOSIX: Set-user-ID on execution; Numeric value: 04000.static intS_ISVTXPOSIX.XSI: On directories, restricted deletion flag; Numeric value: 01000.static intS_IWGRPPOSIX: Write permission, group; Numeric value: 020.static intS_IWOTHPOSIX: Write permission, others; Numeric value: 02.static intS_IWUSRPOSIX: Write permission, owner; Numeric value: 0200.static intS_IXGRPPOSIX: Execute/search permission, group; Numeric value: 010.static intS_IXOTHPOSIX: Execute/search permission, others; Numeric value: 01.static intS_IXUSRPOSIX: Execute/search permission, owner; Numeric value: 0100.
-
-
-
Field Detail
-
HAVE_SYS_STAT_H
public static final boolean HAVE_SYS_STAT_H
-
S_IRGRP
@Define public static final int S_IRGRP
POSIX: Read permission, group; Numeric value: 040.
-
S_IROTH
@Define public static final int S_IROTH
POSIX: Read permission, others; Numeric value: 04.
-
S_IRUSR
@Define public static final int S_IRUSR
POSIX: Read permission, owner; Numeric value: 0400.
-
S_IRWXG
@Define public static final int S_IRWXG
POSIX: Read, write, execute/search by group; Numeric value: 070.
-
S_IRWXO
@Define public static final int S_IRWXO
POSIX: Read, write, execute/search by others; Numeric value: 07.
-
S_IRWXU
@Define public static final int S_IRWXU
POSIX: Read, write, execute/search by owner; Numeric value: 0700.
-
S_ISGID
@Define public static final int S_ISGID
POSIX: Set-group-ID on execution; Numeric value: 02000.
-
S_ISUID
@Define public static final int S_ISUID
POSIX: Set-user-ID on execution; Numeric value: 04000.
-
S_ISVTX
@Define public static final int S_ISVTX
POSIX.XSI: On directories, restricted deletion flag; Numeric value: 01000.
-
S_IWGRP
@Define public static final int S_IWGRP
POSIX: Write permission, group; Numeric value: 020.
-
S_IWOTH
@Define public static final int S_IWOTH
POSIX: Write permission, others; Numeric value: 02.
-
S_IWUSR
@Define public static final int S_IWUSR
POSIX: Write permission, owner; Numeric value: 0200.
-
S_IXGRP
@Define public static final int S_IXGRP
POSIX: Execute/search permission, group; Numeric value: 010.
-
S_IXOTH
@Define public static final int S_IXOTH
POSIX: Execute/search permission, others; Numeric value: 01.
-
S_IXUSR
@Define public static final int S_IXUSR
POSIX: Execute/search permission, owner; Numeric value: 0100.
-
-