public static enum SnmpResponse.ErrorType extends Enum<SnmpResponse.ErrorType>
| Enum Constant and Description |
|---|
RESPONSE_AUTHORIZATION_ERROR |
RESPONSE_DECRYPTION_ERROR |
RESPONSE_INVALID_VB_COUNT_ERROR |
RESPONSE_OK |
RESPONSE_PDU_ERROR |
RESPONSE_PDU_VARBIND_ERROR |
RESPONSE_USM_ERROR |
RESPONSE_WALK_RESPONSE_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static SnmpResponse.ErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnmpResponse.ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnmpResponse.ErrorType RESPONSE_OK
public static final SnmpResponse.ErrorType RESPONSE_PDU_ERROR
public static final SnmpResponse.ErrorType RESPONSE_PDU_VARBIND_ERROR
public static final SnmpResponse.ErrorType RESPONSE_USM_ERROR
public static final SnmpResponse.ErrorType RESPONSE_WALK_RESPONSE_ERROR
public static final SnmpResponse.ErrorType RESPONSE_INVALID_VB_COUNT_ERROR
public static final SnmpResponse.ErrorType RESPONSE_DECRYPTION_ERROR
public static final SnmpResponse.ErrorType RESPONSE_AUTHORIZATION_ERROR
public static SnmpResponse.ErrorType[] values()
for (SnmpResponse.ErrorType c : SnmpResponse.ErrorType.values()) System.out.println(c);
public static SnmpResponse.ErrorType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.