Enum IContext.ExecutionType
- java.lang.Object
-
- java.lang.Enum<IContext.ExecutionType>
-
- com.mendix.systemwideinterfaces.core.IContext.ExecutionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IContext.ExecutionType>
- Enclosing interface:
- IContext
public static enum IContext.ExecutionType extends java.lang.Enum<IContext.ExecutionType>
Defines the available types of request execution.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT
CLIENT_ASYNC
CLIENT_ASYNC_MONITORED
CUSTOM
SCHEDULED_EVENT
UNKNOWN
WEB_SERVICE
-
Field Summary
Fields Modifier and Type Field Description IContext.ExecutionType
destinationType
boolean
persistState
boolean
shouldBeMonitored
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IContext.ExecutionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IContext.ExecutionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT
public static final IContext.ExecutionType CLIENT
-
CLIENT_ASYNC_MONITORED
public static final IContext.ExecutionType CLIENT_ASYNC_MONITORED
-
CLIENT_ASYNC
public static final IContext.ExecutionType CLIENT_ASYNC
-
CUSTOM
public static final IContext.ExecutionType CUSTOM
-
WEB_SERVICE
public static final IContext.ExecutionType WEB_SERVICE
-
SCHEDULED_EVENT
public static final IContext.ExecutionType SCHEDULED_EVENT
-
UNKNOWN
public static final IContext.ExecutionType UNKNOWN
-
-
Field Detail
-
shouldBeMonitored
public final boolean shouldBeMonitored
-
destinationType
public final IContext.ExecutionType destinationType
-
persistState
public final boolean persistState
-
-
Method Detail
-
values
public static IContext.ExecutionType[] 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 (IContext.ExecutionType c : IContext.ExecutionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IContext.ExecutionType 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
-
-