public enum FileCategory extends Enum<FileCategory>
| Enum Constant and Description |
|---|
CACHE
For files or directories that contain cached data.
|
LOG
For files or directories that contain log data that is bound to a
specific user and computer.
|
PROFILE
For files or directories that contain configuration data or similar data
that belongs to a specific user, but might non-simultaneously be shared
across different computers or operating systems.
|
| Modifier and Type | Method and Description |
|---|---|
static FileCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileCategory PROFILE
public static final FileCategory CACHE
public static final FileCategory LOG
public static FileCategory[] values()
for (FileCategory c : FileCategory.values()) System.out.println(c);
public static FileCategory 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 © 2021 jitsi.org. All rights reserved.