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