public static enum IssueLocation.Type extends Enum<IssueLocation.Type>
| Modifier and Type | Method and Description |
|---|---|
static IssueLocation.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueLocation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueLocation.Type FILE
public static final IssueLocation.Type LINE
public static final IssueLocation.Type RANGE
public static IssueLocation.Type[] values()
for (IssueLocation.Type c : IssueLocation.Type.values()) System.out.println(c);
public static IssueLocation.Type 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 © 2009–2018 SonarSource. All rights reserved.