org.apache.axis2.jaxws.description
Enum DescriptionFactory.UpdateType
java.lang.Object
java.lang.Enum<DescriptionFactory.UpdateType>
org.apache.axis2.jaxws.description.DescriptionFactory.UpdateType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DescriptionFactory.UpdateType>
- Enclosing class:
- DescriptionFactory
public static enum DescriptionFactory.UpdateType
- extends java.lang.Enum<DescriptionFactory.UpdateType>
The type of update being done for a particular Port. This is used by the JAX-WS service
delegate on the CLIENT side. This is used as a parameter to the updateEndpoint factory
method. An EndpointDescription will be returned corresponding to the port. GET_PORT:
Return an SEI-based pre-existing port ADD_PORT: Return a Dispatch-only non-pre-existing
port CREATE_DISPATCH: Return a Dispatch port; this is valid on either a pre-existing port
(e.g. GET_PORT) or dynamic port (ADD_PORT)
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 |
GET_PORT
public static final DescriptionFactory.UpdateType GET_PORT
ADD_PORT
public static final DescriptionFactory.UpdateType ADD_PORT
CREATE_DISPATCH
public static final DescriptionFactory.UpdateType CREATE_DISPATCH
values
public static final DescriptionFactory.UpdateType[] 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(DescriptionFactory.UpdateType c : DescriptionFactory.UpdateType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static DescriptionFactory.UpdateType 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
Copyright ? 2007 Apache Web Services Project. All Rights Reserved.