public static enum XPathExtensionFunctionDescriptor.ExpressionType extends java.lang.Enum<XPathExtensionFunctionDescriptor.ExpressionType>
Enum Constant and Description |
---|
EXIT_CONDITION
To indicate the function is available in a BPEL exit condition.
|
FOR_EACH_COUNTER
To indicate the function is available in an BPEL for-each counter expression.
|
GENERAL_EXPRESSION
To indicate the function is available in a BPEL general expression, for example, in a to or from expression of an assignment.
|
JOIN_CONDITION
To indicate the function is available in a BPEL join condition.
|
TIMEOUT_EXPRESSION
To indicate the function is available in a BPEL timeout expression.
|
TRANSITION_CONDITION
To indicate the function is available in a BPEL link condition
|
Modifier and Type | Method and Description |
---|---|
static XPathExtensionFunctionDescriptor.ExpressionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XPathExtensionFunctionDescriptor.ExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XPathExtensionFunctionDescriptor.ExpressionType JOIN_CONDITION
public static final XPathExtensionFunctionDescriptor.ExpressionType TRANSITION_CONDITION
public static final XPathExtensionFunctionDescriptor.ExpressionType EXIT_CONDITION
public static final XPathExtensionFunctionDescriptor.ExpressionType TIMEOUT_EXPRESSION
public static final XPathExtensionFunctionDescriptor.ExpressionType GENERAL_EXPRESSION
public static final XPathExtensionFunctionDescriptor.ExpressionType FOR_EACH_COUNTER
public static XPathExtensionFunctionDescriptor.ExpressionType[] values()
for (XPathExtensionFunctionDescriptor.ExpressionType c : XPathExtensionFunctionDescriptor.ExpressionType.values()) System.out.println(c);
public static XPathExtensionFunctionDescriptor.ExpressionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null