@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-03-22T19:35:35.132Z") @Deprecated public enum FollowMode extends java.lang.Enum<FollowMode>
Enum Constant and Description |
---|
ALWAYS
Deprecated.
|
BLOCK_EXTERNAL
Deprecated.
|
EXTERNAL
Deprecated.
|
NEVER
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static FollowMode |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static FollowMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final FollowMode NEVER
@Deprecated public static final FollowMode ALWAYS
@Deprecated public static final FollowMode EXTERNAL
@Deprecated public static final FollowMode BLOCK_EXTERNAL
This is the safest mode of operation as it ensures that copy operations won't materialize files from the user's file system. Internal symlinks are not followed.
If the copy operation runs into an external symlink, it will fail.
public static FollowMode[] values()
for (FollowMode c : FollowMode.values()) System.out.println(c);
public static FollowMode 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 null