com.vmware.vcloud.sdk.constants
Enum FenceModeValuesType

java.lang.Object
  extended by java.lang.Enum<FenceModeValuesType>
      extended by com.vmware.vcloud.sdk.constants.FenceModeValuesType
All Implemented Interfaces:
Serializable, Comparable<FenceModeValuesType>

public enum FenceModeValuesType
extends Enum<FenceModeValuesType>

FenceModeValues constants

Since:
API 1.5, SDK 1.5
Author:
Ecosystem Engineering

Enum Constant Summary
BRIDGED
          Fence mode for a network which is bridged to parent network.
ISOLATED
          Fence mode for a network which is isolated from all other networks.
NATROUTED
          Fence mode for a network which is NAT routed to parent network.
 
Method Summary
static FenceModeValuesType fromValue(String value)
           
 String value()
           
static FenceModeValuesType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FenceModeValuesType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BRIDGED

public static final FenceModeValuesType BRIDGED
Fence mode for a network which is bridged to parent network.


ISOLATED

public static final FenceModeValuesType ISOLATED
Fence mode for a network which is isolated from all other networks.


NATROUTED

public static final FenceModeValuesType NATROUTED
Fence mode for a network which is NAT routed to parent network.

Method Detail

values

public static FenceModeValuesType[] 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 (FenceModeValuesType c : FenceModeValuesType.values())
    System.out.println(c);

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

valueOf

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

fromValue

public static FenceModeValuesType fromValue(String value)


Copyright © 2016. All Rights Reserved.