org.virtualbox_7_0
Enum ExportOptions

java.lang.Object
  extended by java.lang.Enum<ExportOptions>
      extended by org.virtualbox_7_0.ExportOptions
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExportOptions>

public enum ExportOptions
extends java.lang.Enum<ExportOptions>

Export options, used withIAppliance.write(String,List,String). Interface ID: {8F45EB08-FD34-41EE-AF95-A880BDEE5554}


Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CreateManifest

public static final ExportOptions CreateManifest
Write the optional manifest file (.mf) which is used for integrity checks prior import.


ExportDVDImages

public static final ExportOptions ExportDVDImages
Export DVD images. Default is not to export them as it is rarely needed for typical VMs.


StripAllMACs

public static final ExportOptions StripAllMACs
Do not export any MAC address information. Default is to keep them to avoid losing information which can cause trouble after import, at the price of risking duplicate MAC addresses, if the import options are used to keep them.


StripAllNonNATMACs

public static final ExportOptions StripAllNonNATMACs
Do not export any MAC address information, except for adapters using NAT. Default is to keep them to avoid losing information which can cause trouble after import, at the price of risking duplicate MAC addresses, if the import options are used to keep them.

Method Detail

values

public static ExportOptions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ExportOptions c : ExportOptions.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ExportOptions valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static ExportOptions fromValue(long v)

fromValue

public static ExportOptions fromValue(java.lang.String v)