java.io.Serializable, java.lang.Comparable<LocalResourceVisibility>@Public @Stable public enum LocalResourceVisibility extends java.lang.Enum<LocalResourceVisibility>
LocalResourceVisibility specifies the visibility
of a resource localized by the NodeManager.
The visibility can be one of:
PUBLIC - Shared by all users on the node.PRIVATE - Shared among all applications of the
same user on the node.
APPLICATION - Shared only among containers of the
same application on the node.
| Enum Constant | Description |
|---|---|
APPLICATION |
Shared only among containers of the same application on the node.
|
PRIVATE |
Shared among all applications of the same user on the node.
|
PUBLIC |
Shared by all users on the node.
|
| Modifier and Type | Method | Description |
|---|---|---|
static LocalResourceVisibility |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static LocalResourceVisibility[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalResourceVisibility PUBLIC
public static final LocalResourceVisibility PRIVATE
public static final LocalResourceVisibility APPLICATION
public static LocalResourceVisibility[] values()
for (LocalResourceVisibility c : LocalResourceVisibility.values()) System.out.println(c);
public static LocalResourceVisibility valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2008–2025 Apache Software Foundation. All rights reserved.