public enum SnmpCallType extends Enum<SnmpCallType>
| Modifier and Type | Method and Description |
|---|---|
static SnmpCallType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SnmpCallType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnmpCallType GET
public static final SnmpCallType GETNEXT
public static final SnmpCallType GETBULK
public static final SnmpCallType TRAP
public static SnmpCallType[] values()
for (SnmpCallType c : SnmpCallType.values()) System.out.println(c);
public static SnmpCallType 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 © 2020. All rights reserved.