Enum ChdfsErrorCode
- java.lang.Object
-
- java.lang.Enum<ChdfsErrorCode>
-
- com.tencentcloudapi.chdfs.v20201112.ChdfsErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<ChdfsErrorCode>
public enum ChdfsErrorCode extends Enum<ChdfsErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static ChdfsErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ChdfsErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILEDOPERATION
public static final ChdfsErrorCode FAILEDOPERATION
-
FAILEDOPERATION_ACCESSGROUPBOUND
public static final ChdfsErrorCode FAILEDOPERATION_ACCESSGROUPBOUND
-
FAILEDOPERATION_ACCOUNTINSUFFICIENTBALANCE
public static final ChdfsErrorCode FAILEDOPERATION_ACCOUNTINSUFFICIENTBALANCE
-
FAILEDOPERATION_ACCOUNTUNAUTHENTICATED
public static final ChdfsErrorCode FAILEDOPERATION_ACCOUNTUNAUTHENTICATED
-
FAILEDOPERATION_FILESYSTEMNOTEMPTY
public static final ChdfsErrorCode FAILEDOPERATION_FILESYSTEMNOTEMPTY
-
FAILEDOPERATION_QUOTALESSTHANCURRENTUSED
public static final ChdfsErrorCode FAILEDOPERATION_QUOTALESSTHANCURRENTUSED
-
INTERNALERROR
public static final ChdfsErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final ChdfsErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final ChdfsErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_INVALIDACCESSGROUPID
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDACCESSGROUPID
-
INVALIDPARAMETERVALUE_INVALIDACCESSGROUPNAME
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDACCESSGROUPNAME
-
INVALIDPARAMETERVALUE_INVALIDACCESSRULEADDRESS
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDACCESSRULEADDRESS
-
INVALIDPARAMETERVALUE_INVALIDCAPACITYQUOTA
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDCAPACITYQUOTA
-
INVALIDPARAMETERVALUE_INVALIDDESCRIPTION
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDDESCRIPTION
-
INVALIDPARAMETERVALUE_INVALIDFILESYSTEMID
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDFILESYSTEMID
-
INVALIDPARAMETERVALUE_INVALIDFILESYSTEMNAME
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDFILESYSTEMNAME
-
INVALIDPARAMETERVALUE_INVALIDMOUNTPOINTID
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDMOUNTPOINTID
-
INVALIDPARAMETERVALUE_INVALIDMOUNTPOINTNAME
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDMOUNTPOINTNAME
-
INVALIDPARAMETERVALUE_INVALIDVPCID
public static final ChdfsErrorCode INVALIDPARAMETERVALUE_INVALIDVPCID
-
LIMITEXCEEDED
public static final ChdfsErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final ChdfsErrorCode MISSINGPARAMETER
-
RESOURCEINUSE
public static final ChdfsErrorCode RESOURCEINUSE
-
RESOURCENOTFOUND
public static final ChdfsErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_ACCESSGROUPNOTEXISTS
public static final ChdfsErrorCode RESOURCENOTFOUND_ACCESSGROUPNOTEXISTS
-
RESOURCENOTFOUND_ACCESSRULENOTEXISTS
public static final ChdfsErrorCode RESOURCENOTFOUND_ACCESSRULENOTEXISTS
-
RESOURCENOTFOUND_FILESYSTEMNOTEXISTS
public static final ChdfsErrorCode RESOURCENOTFOUND_FILESYSTEMNOTEXISTS
-
RESOURCENOTFOUND_MOUNTPOINTNOTEXISTS
public static final ChdfsErrorCode RESOURCENOTFOUND_MOUNTPOINTNOTEXISTS
-
RESOURCENOTFOUND_VPCNOTEXISTS
public static final ChdfsErrorCode RESOURCENOTFOUND_VPCNOTEXISTS
-
RESOURCEUNAVAILABLE
public static final ChdfsErrorCode RESOURCEUNAVAILABLE
-
UNAUTHORIZEDOPERATION
public static final ChdfsErrorCode UNAUTHORIZEDOPERATION
-
-
Method Detail
-
values
public static ChdfsErrorCode[] 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 (ChdfsErrorCode c : ChdfsErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChdfsErrorCode 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 nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
- Returns:
- errorcode value
-
-