public enum ExportOptions extends java.lang.Enum<ExportOptions>
IAppliance.write(String,List,String)
.
Interface ID: {8F45EB08-FD34-41EE-AF95-A880BDEE5554}
Enum Constant and Description |
---|
CreateManifest
Write the optional manifest file (.mf) which is used for integrity
checks prior import.
|
ExportDVDImages
Export DVD images.
|
StripAllMACs
Do not export any MAC address information.
|
StripAllNonNATMACs
Do not export any MAC address information, except for adapters
using NAT.
|
Modifier and Type | Method and Description |
---|---|
static ExportOptions |
fromValue(long v) |
static ExportOptions |
fromValue(java.lang.String v) |
int |
value() |
static ExportOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExportOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportOptions CreateManifest
public static final ExportOptions ExportDVDImages
public static final ExportOptions StripAllMACs
public static final ExportOptions StripAllNonNATMACs
public static ExportOptions[] values()
for (ExportOptions c : ExportOptions.values()) System.out.println(c);
public static ExportOptions 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 nullpublic int value()
public static ExportOptions fromValue(long v)
public static ExportOptions fromValue(java.lang.String v)