public enum SmiSyntaxType extends Enum<SmiSyntaxType>
| Enum Constant and Description |
|---|
APPLICATION
Denotes an APPLICATION syntax as specified by ASN.1
|
CONVENTION
Denotes a TEXTUAL CONVENTION that is defined based on SIMPLE or APPLICATION
syntax.
|
SEQUENCE
Denotes a SEQUENCE syntax used for defining tables.
|
SIMPLE
Denotes a SIMPLE syntax, for example INTEGER, OCTET STRING, etc.
|
| Modifier and Type | Method and Description |
|---|---|
static SmiSyntaxType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmiSyntaxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmiSyntaxType APPLICATION
public static final SmiSyntaxType CONVENTION
public static final SmiSyntaxType SIMPLE
public static final SmiSyntaxType SEQUENCE
public static SmiSyntaxType[] values()
for (SmiSyntaxType c : SmiSyntaxType.values()) System.out.println(c);
public static SmiSyntaxType 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.