org.apache.servicemix.nmr.api
Enum Pattern
java.lang.Object
java.lang.Enum<Pattern>
org.apache.servicemix.nmr.api.Pattern
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Pattern>
public enum Pattern
- extends java.lang.Enum<Pattern>
Pattern of the exchange
- Since:
- 4.0
- Version:
- $Revision: $
|
Field Summary |
protected static java.util.Map<java.lang.String,Pattern> |
map
|
|
Method Summary |
static Pattern |
fromWsdlUri(java.lang.String wsdlUri)
Converts the WSDL URI into a Pattern instance |
java.lang.String |
getWsdlUri()
Returns the WSDL URI for this message exchange pattern |
static Pattern |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Pattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
InOnly
public static final Pattern InOnly
RobustInOnly
public static final Pattern RobustInOnly
InOut
public static final Pattern InOut
InOptionalOut
public static final Pattern InOptionalOut
map
protected static final java.util.Map<java.lang.String,Pattern> map
values
public static final Pattern[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(Pattern c : Pattern.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static Pattern 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 name
getWsdlUri
public java.lang.String getWsdlUri()
- Returns the WSDL URI for this message exchange pattern
- Returns:
- the WSDL URI for this message exchange pattern
fromWsdlUri
public static Pattern fromWsdlUri(java.lang.String wsdlUri)
- Converts the WSDL URI into a
Pattern instance
Copyright © 2005-2009 The Apache Software Foundation. All Rights Reserved.