com.baidubce.services.bcc.model.volume
Enum VolumeAction

java.lang.Object
  extended by java.lang.Enum<VolumeAction>
      extended by com.baidubce.services.bcc.model.volume.VolumeAction
All Implemented Interfaces:
Serializable, Comparable<VolumeAction>

public enum VolumeAction
extends Enum<VolumeAction>

The action for operating the volume.


Enum Constant Summary
attach
          The action to attach the volume.
detach
          The action to detach the volume.
purchaseReserved
          The action to purchaseReserved the volume.
resize
          The action to resize the volume.
rollback
          The action to rollback the volume.
 
Method Summary
static VolumeAction valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VolumeAction[] 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

attach

public static final VolumeAction attach
The action to attach the volume.


detach

public static final VolumeAction detach
The action to detach the volume.


resize

public static final VolumeAction resize
The action to resize the volume.


rollback

public static final VolumeAction rollback
The action to rollback the volume.


purchaseReserved

public static final VolumeAction purchaseReserved
The action to purchaseReserved the volume.

Method Detail

values

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

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

valueOf

public static VolumeAction 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


Copyright © 2018. All rights reserved.