public enum MountOption extends java.lang.Enum<MountOption>
Automounter.| Modifier and Type | Method and Description |
|---|---|
(package private) abstract void |
applyTo(MountConfig config)
Each option must apply its custom settings to teh
MountConfig. |
static MountOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MountOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MountOption EXPANDED
public static final MountOption COPY
public static MountOption[] values()
for (MountOption c : MountOption.values()) System.out.println(c);
public static MountOption 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 nullabstract void applyTo(MountConfig config)
MountConfig.config - MountConfig to apply settings to