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