Enum StorageType

    • Enum Constant Detail

      • CINDER

        public static final StorageType CINDER
        Cinder storage domain. For more details on Cinder please go to https://wiki.openstack.org/wiki/Cinder[Cinder].
      • FCP

        public static final StorageType FCP
        Fibre-Channel storage domain.
      • GLANCE

        public static final StorageType GLANCE
        Glance storage domain. For more details on Glance please go to https://wiki.openstack.org/wiki/Glance[Glance].
      • GLUSTERFS

        public static final StorageType GLUSTERFS
        Gluster-FS storage domain. For more details on Gluster please go to https://www.gluster.org/[Gluster].
      • ISCSI

        public static final StorageType ISCSI
        iSCSI storage domain.
      • LOCALFS

        public static final StorageType LOCALFS
        Storage domain on Local storage.
      • MANAGED_BLOCK_STORAGE

        public static final StorageType MANAGED_BLOCK_STORAGE
        Managed block storage domain. A storage domain managed using cinderlib. For supported storage drivers, see https://docs.openstack.org/cinder/rocky/drivers.html[Available Drivers].
      • NFS

        public static final StorageType NFS
        NFS storage domain.
      • POSIXFS

        public static final StorageType POSIXFS
        POSIX-FS storage domain.
    • Method Detail

      • values

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

        public static StorageType 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()