public enum FsMode extends Enum<FsMode>
Enum Constant and Description |
---|
FILES_FOLDERS
Support only files and folders (classic mode).
|
FILEVAULT_XML
FileVault XML format (expanded content package).
|
INITIAL_CONTENT
Sling-Initial-Content file system layout, supports file and folders ant content files in JSON, xml and jcr.xml format.
|
Modifier and Type | Method and Description |
---|---|
static FsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FsMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FsMode FILES_FOLDERS
public static final FsMode INITIAL_CONTENT
public static final FsMode FILEVAULT_XML
public static FsMode[] values()
for (FsMode c : FsMode.values()) System.out.println(c);
public static FsMode 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 © 2007–2019 The Apache Software Foundation. All rights reserved.