Enum BmvpcErrorCode
- java.lang.Object
-
- java.lang.Enum<BmvpcErrorCode>
-
- com.tencentcloudapi.bmvpc.v20180625.BmvpcErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<BmvpcErrorCode>
public enum BmvpcErrorCode extends Enum<BmvpcErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static BmvpcErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static BmvpcErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILEDOPERATION
public static final BmvpcErrorCode FAILEDOPERATION
-
INTERNALERROR
public static final BmvpcErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final BmvpcErrorCode INVALIDPARAMETER
-
LIMITEXCEEDED
public static final BmvpcErrorCode LIMITEXCEEDED
-
LIMITEXCEEDED_SPDACLLIMIT
public static final BmvpcErrorCode LIMITEXCEEDED_SPDACLLIMIT
-
LIMITEXCEEDED_SPDDNETLIMIT
public static final BmvpcErrorCode LIMITEXCEEDED_SPDDNETLIMIT
-
LIMITEXCEEDED_SPDSNETLIMIT
public static final BmvpcErrorCode LIMITEXCEEDED_SPDSNETLIMIT
-
RESOURCEINUSE
public static final BmvpcErrorCode RESOURCEINUSE
-
RESOURCENOTFOUND
public static final BmvpcErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_CUSTOMERGATEWAYNOTEXIST
public static final BmvpcErrorCode RESOURCENOTFOUND_CUSTOMERGATEWAYNOTEXIST
-
RESOURCENOTFOUND_NOTAVAIBLE
public static final BmvpcErrorCode RESOURCENOTFOUND_NOTAVAIBLE
-
RESOURCENOTFOUND_VPCNOTEXIST
public static final BmvpcErrorCode RESOURCENOTFOUND_VPCNOTEXIST
-
RESOURCENOTFOUND_VPCPEERNOTEXIST
public static final BmvpcErrorCode RESOURCENOTFOUND_VPCPEERNOTEXIST
-
RESOURCENOTFOUND_VPNCONNNOTEXIST
public static final BmvpcErrorCode RESOURCENOTFOUND_VPNCONNNOTEXIST
-
RESOURCENOTFOUND_VPNGWNOTEXIST
public static final BmvpcErrorCode RESOURCENOTFOUND_VPNGWNOTEXIST
-
RESOURCEUNAVAILABLE
public static final BmvpcErrorCode RESOURCEUNAVAILABLE
-
UNAUTHORIZEDOPERATION
public static final BmvpcErrorCode UNAUTHORIZEDOPERATION
-
UNSUPPORTEDOPERATION
public static final BmvpcErrorCode UNSUPPORTEDOPERATION
-
UNSUPPORTEDOPERATION_CUSTOMERGATEWAYADDREXIST
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_CUSTOMERGATEWAYADDREXIST
-
UNSUPPORTEDOPERATION_CUSTOMERGATEWAYADDRINVALID
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_CUSTOMERGATEWAYADDRINVALID
-
UNSUPPORTEDOPERATION_INVALIDVPCPEERSTATE
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_INVALIDVPCPEERSTATE
-
UNSUPPORTEDOPERATION_INVALIDVPNCONNSTATE
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_INVALIDVPNCONNSTATE
-
UNSUPPORTEDOPERATION_SPDACLCIDRINVALID
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_SPDACLCIDRINVALID
-
UNSUPPORTEDOPERATION_SPDSNETNOTINCIDR
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_SPDSNETNOTINCIDR
-
UNSUPPORTEDOPERATION_VPCCIDRCONFICT
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_VPCCIDRCONFICT
-
UNSUPPORTEDOPERATION_VPCPEEREXIST
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_VPCPEEREXIST
-
UNSUPPORTEDOPERATION_VPNCONNEXIST
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_VPNCONNEXIST
-
UNSUPPORTEDOPERATION_VPNCONNINUSE
public static final BmvpcErrorCode UNSUPPORTEDOPERATION_VPNCONNINUSE
-
-
Method Detail
-
values
public static BmvpcErrorCode[] 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 (BmvpcErrorCode c : BmvpcErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BmvpcErrorCode 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
-
-