org.virtualbox_6_0
Enum CloudCommand

java.lang.Object
  extended by java.lang.Enum<CloudCommand>
      extended by org.virtualbox_6_0.CloudCommand
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CloudCommand>

public enum CloudCommand
extends java.lang.Enum<CloudCommand>


Enum Constant Summary
attachNetworkCard
           
createImage
           
createInstance
           
createInternetGateway
           
createNetwork
           
createRouteTable
           
createSubnet
           
deleteImage
           
deleteInstance
           
deleteInternetGateway
           
deleteNetwork
           
deleteObject
           
deleteRouteTable
           
deleteSubnet
           
detachNetworkCard
           
downloadObject
           
exportImage
           
getImage
           
getInstance
           
getInternetGateway
           
getNamespace
           
getNetwork
           
getNetworkCard
           
getNetworkCardAttachement
           
getObject
           
getRouteTable
           
getSubnet
           
importImage
           
launchInstance
           
listAvailabilityDomains
           
listBuckets
           
listCompartments
           
listImages
           
listInstances
           
listInternetGateways
           
listNetworkCardAttachements
           
listNetworks
           
listObjects
           
listRegions
           
listRouteTables
           
listShapes
           
listSubnets
           
pauseInstance
           
stopInstance
           
Unknown
           
upateNetwork
           
updateImage
           
updateInternetGateway
           
updateNetworkCard
           
updateRouteTable
           
updateSubnet
           
uploadFile
           
 
Method Summary
static CloudCommand fromValue(long v)
           
static CloudCommand fromValue(java.lang.String v)
           
 int value()
           
static CloudCommand valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CloudCommand[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Unknown

public static final CloudCommand Unknown

createInstance

public static final CloudCommand createInstance

launchInstance

public static final CloudCommand launchInstance

pauseInstance

public static final CloudCommand pauseInstance

stopInstance

public static final CloudCommand stopInstance

deleteInstance

public static final CloudCommand deleteInstance

getInstance

public static final CloudCommand getInstance

listInstances

public static final CloudCommand listInstances

createImage

public static final CloudCommand createImage

getImage

public static final CloudCommand getImage

importImage

public static final CloudCommand importImage

exportImage

public static final CloudCommand exportImage

deleteImage

public static final CloudCommand deleteImage

updateImage

public static final CloudCommand updateImage

listImages

public static final CloudCommand listImages

listNetworks

public static final CloudCommand listNetworks

getNetwork

public static final CloudCommand getNetwork

createNetwork

public static final CloudCommand createNetwork

deleteNetwork

public static final CloudCommand deleteNetwork

upateNetwork

public static final CloudCommand upateNetwork

getNetworkCard

public static final CloudCommand getNetworkCard

updateNetworkCard

public static final CloudCommand updateNetworkCard

listNetworkCardAttachements

public static final CloudCommand listNetworkCardAttachements

getNetworkCardAttachement

public static final CloudCommand getNetworkCardAttachement

detachNetworkCard

public static final CloudCommand detachNetworkCard

attachNetworkCard

public static final CloudCommand attachNetworkCard

listSubnets

public static final CloudCommand listSubnets

getSubnet

public static final CloudCommand getSubnet

createSubnet

public static final CloudCommand createSubnet

deleteSubnet

public static final CloudCommand deleteSubnet

updateSubnet

public static final CloudCommand updateSubnet

listInternetGateways

public static final CloudCommand listInternetGateways

getInternetGateway

public static final CloudCommand getInternetGateway

createInternetGateway

public static final CloudCommand createInternetGateway

deleteInternetGateway

public static final CloudCommand deleteInternetGateway

updateInternetGateway

public static final CloudCommand updateInternetGateway

listRouteTables

public static final CloudCommand listRouteTables

getRouteTable

public static final CloudCommand getRouteTable

createRouteTable

public static final CloudCommand createRouteTable

deleteRouteTable

public static final CloudCommand deleteRouteTable

updateRouteTable

public static final CloudCommand updateRouteTable

listShapes

public static final CloudCommand listShapes

uploadFile

public static final CloudCommand uploadFile

downloadObject

public static final CloudCommand downloadObject

deleteObject

public static final CloudCommand deleteObject

getObject

public static final CloudCommand getObject

listObjects

public static final CloudCommand listObjects

listBuckets

public static final CloudCommand listBuckets

getNamespace

public static final CloudCommand getNamespace

listRegions

public static final CloudCommand listRegions

listAvailabilityDomains

public static final CloudCommand listAvailabilityDomains

listCompartments

public static final CloudCommand listCompartments
Method Detail

values

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

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

valueOf

public static CloudCommand valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static CloudCommand fromValue(long v)

fromValue

public static CloudCommand fromValue(java.lang.String v)