public static enum FileUtils.LinkOrCopyResult extends Enum<FileUtils.LinkOrCopyResult>
| Modifier and Type | Method and Description |
|---|---|
static FileUtils.LinkOrCopyResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileUtils.LinkOrCopyResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileUtils.LinkOrCopyResult LINK
public static final FileUtils.LinkOrCopyResult COPY
public static FileUtils.LinkOrCopyResult[] values()
for (FileUtils.LinkOrCopyResult c : FileUtils.LinkOrCopyResult.values()) System.out.println(c);
public static FileUtils.LinkOrCopyResult valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2023 The Apache Software Foundation. All rights reserved.