Package boomerang.weights
Enum PathConditionWeight.ConditionDomain
- java.lang.Object
-
- java.lang.Enum<PathConditionWeight.ConditionDomain>
-
- boomerang.weights.PathConditionWeight.ConditionDomain
-
- All Implemented Interfaces:
Serializable,Comparable<PathConditionWeight.ConditionDomain>
- Enclosing class:
- PathConditionWeight
public static enum PathConditionWeight.ConditionDomain extends Enum<PathConditionWeight.ConditionDomain>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PathConditionWeight.ConditionDomainvalueOf(String name)Returns the enum constant of this type with the specified name.static PathConditionWeight.ConditionDomain[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRUE
public static final PathConditionWeight.ConditionDomain TRUE
-
FALSE
public static final PathConditionWeight.ConditionDomain FALSE
-
TOP
public static final PathConditionWeight.ConditionDomain TOP
-
-
Method Detail
-
values
public static PathConditionWeight.ConditionDomain[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PathConditionWeight.ConditionDomain c : PathConditionWeight.ConditionDomain.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PathConditionWeight.ConditionDomain valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-