public static enum CloverProfile.CoverageRecorderType extends Enum<CloverProfile.CoverageRecorderType>
| Enum Constant and Description |
|---|
FIXED
Fixed array size recorder, requires presence of clover.db to read the size
|
GROWABLE
Resizeable array recorder, grows when needed, no need to have clover.db
|
SHARED
As GROWABLE, but in addition it's being shared if the same initstring is used
|
| Modifier and Type | Method and Description |
|---|---|
static CloverProfile.CoverageRecorderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CloverProfile.CoverageRecorderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloverProfile.CoverageRecorderType FIXED
public static final CloverProfile.CoverageRecorderType GROWABLE
public static final CloverProfile.CoverageRecorderType SHARED
public static CloverProfile.CoverageRecorderType[] values()
for (CloverProfile.CoverageRecorderType c : CloverProfile.CoverageRecorderType.values()) System.out.println(c);
public static CloverProfile.CoverageRecorderType 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 © 2023 OpenClover.org. All rights reserved.