public static enum SmiCompiler.TargetMode extends Enum<SmiCompiler.TargetMode>
| Enum Constant and Description |
|---|
dryRun
Check for syntax errors only, but do not modify the repository at all.
|
dryRunWithoutErrorLimit
Check for syntax errors only, but do not modify the repository at all.
|
storeIntoRepositoryAndLoad
Update the persistent repository and the memory cache.
|
storeIntoRepositoryNoLoad
Check and update the persistent repository on the but do not actually load any MIB modules.
|
| Modifier and Type | Method and Description |
|---|---|
static SmiCompiler.TargetMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmiCompiler.TargetMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmiCompiler.TargetMode dryRun
public static final SmiCompiler.TargetMode dryRunWithoutErrorLimit
public static final SmiCompiler.TargetMode storeIntoRepositoryNoLoad
public static final SmiCompiler.TargetMode storeIntoRepositoryAndLoad
public static SmiCompiler.TargetMode[] values()
for (SmiCompiler.TargetMode c : SmiCompiler.TargetMode.values()) System.out.println(c);
public static SmiCompiler.TargetMode 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.