public static enum CryptoFileSystemProperties.FileSystemFlags extends Enum<CryptoFileSystemProperties.FileSystemFlags>
| Enum Constant and Description |
|---|
INIT_IMPLICITLY
Deprecated.
Will get removed in version 2.0.0. Use
CryptoFileSystemProvider.initialize(Path, String, CharSequence) explicitly. |
READONLY
If present, the vault is opened in read-only mode.
|
| Modifier and Type | Method and Description |
|---|---|
static CryptoFileSystemProperties.FileSystemFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptoFileSystemProperties.FileSystemFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptoFileSystemProperties.FileSystemFlags READONLY
@Deprecated public static final CryptoFileSystemProperties.FileSystemFlags INIT_IMPLICITLY
CryptoFileSystemProvider.initialize(Path, String, CharSequence) explicitly.public static CryptoFileSystemProperties.FileSystemFlags[] values()
for (CryptoFileSystemProperties.FileSystemFlags c : CryptoFileSystemProperties.FileSystemFlags.values()) System.out.println(c);
public static CryptoFileSystemProperties.FileSystemFlags 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 © 2017. All rights reserved.