Enum ImageFileType

    • Enum Constant Detail

      • DISK

        public static final ImageFileType DISK
        The image is a disk format that can be used as a virtual machine's disk.
      • FLOPPY

        public static final ImageFileType FLOPPY
        The image is a floppy disk that can be attached to a virtual machine, for example to install the VirtIO drivers in Windows.
      • ISO

        public static final ImageFileType ISO
        The image is a `.iso` file that can be used as a CD-ROM to boot and install a virtual machine.
    • Method Detail

      • values

        public static ImageFileType[] 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 (ImageFileType c : ImageFileType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ImageFileType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()