Enum NetworkPluginType

  • All Implemented Interfaces:
    Serializable, Comparable<NetworkPluginType>

    public enum NetworkPluginType
    extends Enum<NetworkPluginType>
    Network plug-in type. Specifies the provider driver implementation on the host. Since version 4.2 of the {engine-name}, this type has been deprecated in favour of the `external_plugin_type` attribute of the `OpenStackNetworkProvider` type.
    • Enum Constant Detail

      • OPEN_VSWITCH

        public static final NetworkPluginType OPEN_VSWITCH
        Open vSwitch. Specifies that http://openvswitch.org[Open vSwitch] based driver implementation should be used for this provider. Since version 4.2 of the {engine-name}, this value has been deprecated. Use the string `open_vswitch` in the `OpenStackNetworkProvider.external_plugin_type` attribute instead.
    • Method Detail

      • values

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

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