Package crypto.analysis
Enum HiddenPredicate.HiddenPredicateType
- java.lang.Object
-
- java.lang.Enum<HiddenPredicate.HiddenPredicateType>
-
- crypto.analysis.HiddenPredicate.HiddenPredicateType
-
- All Implemented Interfaces:
Serializable,Comparable<HiddenPredicate.HiddenPredicateType>
- Enclosing class:
- HiddenPredicate
public static enum HiddenPredicate.HiddenPredicateType extends Enum<HiddenPredicate.HiddenPredicateType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ConditionIsNotSatisfiedConstraintsAreNotSatisfiedGeneratingStateIsNeverReached
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HiddenPredicate.HiddenPredicateTypevalueOf(String name)Returns the enum constant of this type with the specified name.static HiddenPredicate.HiddenPredicateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GeneratingStateIsNeverReached
public static final HiddenPredicate.HiddenPredicateType GeneratingStateIsNeverReached
-
ConstraintsAreNotSatisfied
public static final HiddenPredicate.HiddenPredicateType ConstraintsAreNotSatisfied
-
ConditionIsNotSatisfied
public static final HiddenPredicate.HiddenPredicateType ConditionIsNotSatisfied
-
-
Method Detail
-
values
public static HiddenPredicate.HiddenPredicateType[] 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 (HiddenPredicate.HiddenPredicateType c : HiddenPredicate.HiddenPredicateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HiddenPredicate.HiddenPredicateType 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
-
-