Enum ITraceFilter.LanguageElementKind
- java.lang.Object
-
- java.lang.Enum<ITraceFilter.LanguageElementKind>
-
- net.ssehub.easy.instantiation.core.model.common.ITraceFilter.LanguageElementKind
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ITraceFilter.LanguageElementKind>
- Enclosing interface:
- ITraceFilter
public static enum ITraceFilter.LanguageElementKind extends java.lang.Enum<ITraceFilter.LanguageElementKind>
Abstracted kinds of language element (VIL, VTL, rt-VTL) to trace.- Author:
- Holger Eichelberger
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALTERNATIVE_EXECUTIONExecution of a built-in alternative.FAILUREFailure situation.FUNCTION_DEFINITIONDefinition of a user-defined function.FUNCTION_EXECUTIONExecution of a user-defined function.LANGUAGE_UNITThe top-level language unit.LOOP_EXECUTIONExecution of a built-in loop.OPERATION_EXECUTIONExecution of a built-in operation.SWITCH_EXECUTIONExecution of a built-in switch.SYSCALL_EXECUTIONExecution of a system call.
-
Constructor Summary
Constructors Modifier Constructor Description privateLanguageElementKind()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ITraceFilter.LanguageElementKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ITraceFilter.LanguageElementKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LANGUAGE_UNIT
public static final ITraceFilter.LanguageElementKind LANGUAGE_UNIT
The top-level language unit.
-
FUNCTION_DEFINITION
public static final ITraceFilter.LanguageElementKind FUNCTION_DEFINITION
Definition of a user-defined function.
-
FUNCTION_EXECUTION
public static final ITraceFilter.LanguageElementKind FUNCTION_EXECUTION
Execution of a user-defined function.
-
OPERATION_EXECUTION
public static final ITraceFilter.LanguageElementKind OPERATION_EXECUTION
Execution of a built-in operation.
-
SYSCALL_EXECUTION
public static final ITraceFilter.LanguageElementKind SYSCALL_EXECUTION
Execution of a system call.
-
LOOP_EXECUTION
public static final ITraceFilter.LanguageElementKind LOOP_EXECUTION
Execution of a built-in loop.
-
SWITCH_EXECUTION
public static final ITraceFilter.LanguageElementKind SWITCH_EXECUTION
Execution of a built-in switch.
-
ALTERNATIVE_EXECUTION
public static final ITraceFilter.LanguageElementKind ALTERNATIVE_EXECUTION
Execution of a built-in alternative.
-
FAILURE
public static final ITraceFilter.LanguageElementKind FAILURE
Failure situation.
-
-
Method Detail
-
values
public static ITraceFilter.LanguageElementKind[] 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 (ITraceFilter.LanguageElementKind c : ITraceFilter.LanguageElementKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ITraceFilter.LanguageElementKind valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-