Enum DescriptionFactory.UpdateType
java.lang.Object
java.lang.Enum<DescriptionFactory.UpdateType>
org.apache.axis2.jaxws.description.DescriptionFactory.UpdateType
- All Implemented Interfaces:
Serializable,Comparable<DescriptionFactory.UpdateType>
- Enclosing class:
- DescriptionFactory
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)
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static DescriptionFactory.UpdateType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
GET_PORT
-
ADD_PORT
-
CREATE_DISPATCH
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-