Package org.apache.synapse
Enum SequenceType
- java.lang.Object
-
- java.lang.Enum<SequenceType>
-
- org.apache.synapse.SequenceType
-
- All Implemented Interfaces:
Serializable
,Comparable<SequenceType>
public enum SequenceType extends Enum<SequenceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANON
API_FAULTSEQ
API_INSEQ
API_OUTSEQ
NAMED
PROXY_FAULTSEQ
PROXY_INSEQ
PROXY_OUTSEQ
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SequenceType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SequenceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROXY_INSEQ
public static final SequenceType PROXY_INSEQ
-
PROXY_OUTSEQ
public static final SequenceType PROXY_OUTSEQ
-
PROXY_FAULTSEQ
public static final SequenceType PROXY_FAULTSEQ
-
API_INSEQ
public static final SequenceType API_INSEQ
-
API_OUTSEQ
public static final SequenceType API_OUTSEQ
-
API_FAULTSEQ
public static final SequenceType API_FAULTSEQ
-
NAMED
public static final SequenceType NAMED
-
ANON
public static final SequenceType ANON
-
-
Method Detail
-
values
public static SequenceType[] 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 (SequenceType c : SequenceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SequenceType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-