public static enum BasicCodeGenerator.ImportResolutionMode extends Enum<BasicCodeGenerator.ImportResolutionMode>
Enum Constant and Description |
---|
REVISION_EXACT_OR_LATEST
Standard, RFC6020 and RFC7950 compliant mode.
|
SEMVER_LATEST
Semantic version based mode.
|
Modifier and Type | Method and Description |
---|---|
static BasicCodeGenerator.ImportResolutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BasicCodeGenerator.ImportResolutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicCodeGenerator.ImportResolutionMode REVISION_EXACT_OR_LATEST
public static final BasicCodeGenerator.ImportResolutionMode SEMVER_LATEST
REVISION_EXACT_OR_LATEST
.public static BasicCodeGenerator.ImportResolutionMode[] values()
for (BasicCodeGenerator.ImportResolutionMode c : BasicCodeGenerator.ImportResolutionMode.values()) System.out.println(c);
public static BasicCodeGenerator.ImportResolutionMode 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 © 2019 OpenDaylight. All rights reserved.