Enum Class IvmlReasonerCapabilities
java.lang.Object
java.lang.Enum<IvmlReasonerCapabilities>
net.ssehub.easy.varModel.capabilities.IvmlReasonerCapabilities
- All Implemented Interfaces:
Serializable,Comparable<IvmlReasonerCapabilities>,Constable,IReasonerCapability
public enum IvmlReasonerCapabilities
extends Enum<IvmlReasonerCapabilities>
implements IReasonerCapability
Defines some differentiating reasoner capabilities to react in EASy on provided
capabilities in an abstract way. The IVML editor may utilize these
enum constants to display reasoner-specific warnings if capabilities for a utilized IVML
concept are missing.
- Author:
- Holger Eichelberger
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhether the reasoner works with attributes.Whether the reasoner can work with "eval".Whether the reasoner works with iterators.Whether the reasoner works with null values.Whether the reasoner works with top-level quantified compound access, i.e., turns expressions likeCmp.i...for compound typeCmpintoallInstances(Cmp)->forAll(c|c.i...).Whether the reasoner works with quantors.Whether the reasoner works with user-defined functions. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic IvmlReasonerCapabilitiesReturns the enum constant of this class with the specified name.static IvmlReasonerCapabilities[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NULL_VALUE
Whether the reasoner works with null values. -
QUALIFIED_COMPOUND_ACCESS
Whether the reasoner works with top-level quantified compound access, i.e., turns expressions likeCmp.i...for compound typeCmpintoallInstances(Cmp)->forAll(c|c.i...). -
QUANTORS
Whether the reasoner works with quantors. -
ITERATORS
Whether the reasoner works with iterators. -
USER_DEF_FUNCTIONS
Whether the reasoner works with user-defined functions. -
ATTRIBUTES
Whether the reasoner works with attributes. -
EVAL
Whether the reasoner can work with "eval".
-
-
Constructor Details
-
IvmlReasonerCapabilities
private IvmlReasonerCapabilities()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-