public enum Targets extends Enum<Targets>
| Enum Constant and Description |
|---|
CODE_COVERAGE |
TOTAL_COVERAGE |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static Targets |
resolve(String name) |
static Targets |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Targets[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Targets TOTAL_COVERAGE
public static final Targets CODE_COVERAGE
public static Targets[] values()
for (Targets c : Targets.values()) System.out.println(c);
public static Targets 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 nullpublic String getName()
Copyright © 2016–2017. All rights reserved.