public enum IFileSystemSecurity extends java.lang.Enum<IFileSystemSecurity>
| Enum Constant and Description |
|---|
Default |
Encrypted |
Protected |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static IFileSystemSecurity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IFileSystemSecurity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IFileSystemSecurity Default
public static final IFileSystemSecurity Protected
public static final IFileSystemSecurity Encrypted
public static final IFileSystemSecurity Unknown
public static IFileSystemSecurity[] values()
for (IFileSystemSecurity c : IFileSystemSecurity.values()) System.out.println(c);
public static IFileSystemSecurity 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