public enum IssueLocation extends Enum<IssueLocation>
| Enum Constant and Description |
|---|
CONTRACT
The item was not found in the contract but was implemented, causing this issue
|
SOURCE
The item was not found in the implementation but was exposed in the contract
|
| Modifier and Type | Method and Description |
|---|---|
static IssueLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueLocation SOURCE
public static final IssueLocation CONTRACT
public static IssueLocation[] values()
for (IssueLocation c : IssueLocation.values()) System.out.println(c);
public static IssueLocation 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 © 2017. All rights reserved.