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