public static enum SmiCompiler.Strictness extends Enum<SmiCompiler.Strictness>
| Enum Constant and Description |
|---|
lenient
Tries to ignore most of the SMI standard violations.
|
standard
The recommended mode with full SMI(v1/v2) standard checks.
|
| Modifier and Type | Method and Description |
|---|---|
static SmiCompiler.Strictness |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmiCompiler.Strictness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmiCompiler.Strictness standard
public static final SmiCompiler.Strictness lenient
public static SmiCompiler.Strictness[] values()
for (SmiCompiler.Strictness c : SmiCompiler.Strictness.values()) System.out.println(c);
public static SmiCompiler.Strictness 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.