termux-app

Форк
0
87 строк · 2.2 Кб
1

2
/*
3
 * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
 *
6
 * This code is free software; you can redistribute it and/or modify it
7
 * under the terms of the GNU General Public License version 2 only, as
8
 * published by the Free Software Foundation.  Oracle designates this
9
 * particular file as subject to the "Classpath" exception as provided
10
 * by Oracle in the LICENSE file that accompanied this code.
11
 *
12
 * This code is distributed in the hope that it will be useful, but WITHOUT
13
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15
 * version 2 for more details (a copy is included in the LICENSE file that
16
 * accompanied this code).
17
 *
18
 * You should have received a copy of the GNU General Public License version
19
 * 2 along with this work; if not, write to the Free Software Foundation,
20
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
21
 *
22
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
23
 * or visit www.oracle.com if you need additional information or have any
24
 * questions.
25
 */
26

27
package com.termux.shared.file.filesystem;
28

29
/**
30
 * Defines the bits for use with the {@link FileAttributes#permissions()
31
 * permissions} attribute.
32
 *
33
 * <p> The {@link FileAttributes} class defines methods for manipulating
34
 * set of permissions.
35
 *
36
 * https://cs.android.com/android/platform/superproject/+/android-11.0.0_r3:libcore/ojluni/src/main/java/java/nio/file/attribute/PosixFilePermission.java
37
 *
38
 * @since 1.7
39
 */
40

41
public enum FilePermission {
42

43
    /**
44
     * Read permission, owner.
45
     */
46
    OWNER_READ,
47

48
    /**
49
     * Write permission, owner.
50
     */
51
    OWNER_WRITE,
52

53
    /**
54
     * Execute/search permission, owner.
55
     */
56
    OWNER_EXECUTE,
57

58
    /**
59
     * Read permission, group.
60
     */
61
    GROUP_READ,
62

63
    /**
64
     * Write permission, group.
65
     */
66
    GROUP_WRITE,
67

68
    /**
69
     * Execute/search permission, group.
70
     */
71
    GROUP_EXECUTE,
72

73
    /**
74
     * Read permission, others.
75
     */
76
    OTHERS_READ,
77

78
    /**
79
     * Write permission, others.
80
     */
81
    OTHERS_WRITE,
82

83
    /**
84
     * Execute/search permission, others.
85
     */
86
    OTHERS_EXECUTE
87

88
}
89

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.