- All Implemented Interfaces:
Serializable,Comparable<Configurations.Language>,Constable
- Enclosing class:
Configurations
The language of the program being processed. C is the default, but if the
file suffix ends in ".cvl" the command line processor will change it to
CIVL_C. As this is a public static variable, it can also be set manually.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe programming language C, as specified in the C11 StandardThe programming language CIVL-C, an extension of C for concurrency and verification.The programming language FORTRAN, as specified in the FORTRAN StandardUsed for developing the new Fortran front. -
Method Summary
Modifier and TypeMethodDescriptionstatic Configurations.LanguageReturns the enum constant of this class with the specified name.static Configurations.Language[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
C
The programming language C, as specified in the C11 Standard -
CIVL_C
The programming language CIVL-C, an extension of C for concurrency and verification. See http://vsl.cis.udel.edu/civl . -
FORTRAN
The programming language FORTRAN, as specified in the FORTRAN Standard -
FORTRAN_OLD
Used for developing the new Fortran front.
-
-
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
-