public static enum Key.Type extends Enum<Key.Type>
Modifier and Type | Method and Description |
---|---|
static Key.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Key.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Key.Type SNMP
public static final Key.Type NETCONF
public static Key.Type[] values()
for (Key.Type c : Key.Type.values()) System.out.println(c);
public static Key.Type 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 © 2015. All Rights Reserved.