com.vmware.vcloud.sdk.constants
Enum VimObjectTypeEnum

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

public enum VimObjectTypeEnum
extends Enum<VimObjectTypeEnum>

VimObjectEnum constants

Since:
API 1.5, SDK 1.5
Author:
Ecosystem Engineering

Enum Constant Summary
CLUSTER_COMPUTE_RESOURCE
          vSphere cluster compute resource.
DATASTORE
          vSphere data store.
DATASTORE_CLUSTER
          vSphere datastore cluster
DV_PORTGROUP
          vSphere distributed virtual port group.
DV_SWITCH
          vSphere distributed virtual switch.
FILE
          vSphere file
FOLDER
          vSphere folder
HOST
          vSphere host.
NETWORK
          vSphere network.
RESOURCE_POOL
          vSphere resource pool.
SHIELD_MANAGER
          vShield Manager object
STORAGE_PROFILE
          vSphere storage profile
VIRTUAL_APP
          vSphere virtual application.
VIRTUAL_MACHINE
          vSphere virtual machine.
 
Method Summary
static VimObjectTypeEnum fromValue(String value)
           
 String value()
           
static VimObjectTypeEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VimObjectTypeEnum[] 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

CLUSTER_COMPUTE_RESOURCE

public static final VimObjectTypeEnum CLUSTER_COMPUTE_RESOURCE
vSphere cluster compute resource.

Since:
API 5.1, SDK 5.1

RESOURCE_POOL

public static final VimObjectTypeEnum RESOURCE_POOL
vSphere resource pool.


DATASTORE

public static final VimObjectTypeEnum DATASTORE
vSphere data store.


HOST

public static final VimObjectTypeEnum HOST
vSphere host.


VIRTUAL_MACHINE

public static final VimObjectTypeEnum VIRTUAL_MACHINE
vSphere virtual machine.


VIRTUAL_APP

public static final VimObjectTypeEnum VIRTUAL_APP
vSphere virtual application.


NETWORK

public static final VimObjectTypeEnum NETWORK
vSphere network.


DV_PORTGROUP

public static final VimObjectTypeEnum DV_PORTGROUP
vSphere distributed virtual port group.


DV_SWITCH

public static final VimObjectTypeEnum DV_SWITCH
vSphere distributed virtual switch.


FILE

public static final VimObjectTypeEnum FILE
vSphere file

Since:
API 5.1, SDK 5.1

FOLDER

public static final VimObjectTypeEnum FOLDER
vSphere folder

Since:
API 5.1, SDK 5.1

DATASTORE_CLUSTER

public static final VimObjectTypeEnum DATASTORE_CLUSTER
vSphere datastore cluster

Since:
API 5.1, SDK 5.1

STORAGE_PROFILE

public static final VimObjectTypeEnum STORAGE_PROFILE
vSphere storage profile

Since:
API 5.1, SDK 5.1

SHIELD_MANAGER

public static final VimObjectTypeEnum SHIELD_MANAGER
vShield Manager object

Since:
API 5.1, SDK 5.1
Method Detail

values

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

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

valueOf

public static VimObjectTypeEnum 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 VimObjectTypeEnum fromValue(String value)


Copyright © 2016. All Rights Reserved.