Enum Class GuestIPType

java.lang.Object
java.lang.Enum<GuestIPType>
org.jclouds.cloudstack.domain.GuestIPType
All Implemented Interfaces:
Serializable, Comparable<GuestIPType>, Constable

public enum GuestIPType extends Enum<GuestIPType>
See Also:
  • Enum Constant Details

    • VIRTUAL

      public static final GuestIPType VIRTUAL
      guest IP address will be issued by Dhcp server in the guest virtual network. Dhcp role is played by domain router.
    • DIRECT

      public static final GuestIPType DIRECT
      traffic directly to the network and VMs created here are assigned an IP directly from the network as configured
    • SHARED

      public static final GuestIPType SHARED
      TODO: add comments to explain the meaning (cs3 only)
    • ISOLATED

      public static final GuestIPType ISOLATED
    • UNRECOGNIZED

      public static final GuestIPType UNRECOGNIZED
  • Method Details

    • values

      public static GuestIPType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static GuestIPType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<GuestIPType>
    • fromValue

      public static GuestIPType fromValue(String type)