public enum EndpointMappingType extends Enum<EndpointMappingType>
Enum Constant and Description |
---|
ACTION |
BEANNAME |
ROOT_QNAME |
SOAP_ACTION |
TO |
URI |
URI_PATH |
XPATHRESULT |
Modifier and Type | Method and Description |
---|---|
String |
getPrefix() |
static EndpointMappingType |
getTypeFromUriPrefix(String uri)
Find
EndpointMappingType that corresponds with the prefix of the
given uri. |
static EndpointMappingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EndpointMappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EndpointMappingType ROOT_QNAME
public static final EndpointMappingType ACTION
public static final EndpointMappingType TO
public static final EndpointMappingType SOAP_ACTION
public static final EndpointMappingType XPATHRESULT
public static final EndpointMappingType URI
public static final EndpointMappingType URI_PATH
public static final EndpointMappingType BEANNAME
public static EndpointMappingType[] values()
for (EndpointMappingType c : EndpointMappingType.values()) System.out.println(c);
public static EndpointMappingType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getPrefix()
public static EndpointMappingType getTypeFromUriPrefix(String uri)
EndpointMappingType
that corresponds with the prefix of the
given uri. Matching of uri prefix against enum values is case-insensitiveuri
- remaining uri part of Spring-WS componentApache Camel