JTR 4.0 API Documentation

jtr.ws
Enum WsMsgType

java.lang.Object
  extended by java.lang.Enum<WsMsgType>
      extended by jtr.ws.WsMsgType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WsMsgType>

Deprecated.

@Deprecated
public enum WsMsgType
extends java.lang.Enum<WsMsgType>

This enumeration describes the possible webservices message types.

Since:
3.0
Version:
4.0
Author:
Francesco Russo (frusso@dev.java.net)

Enum Constant Summary
FAULT_MSG
          Deprecated. A webservice fault message.
INPUT_MSG
          Deprecated. A webservice input message.
OUTPUT_MSG
          Deprecated. A webservice output message.
 
Method Summary
static WsMsgType valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static WsMsgType[] values()
          Deprecated. 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
 

Enum Constant Detail

INPUT_MSG

public static final WsMsgType INPUT_MSG
Deprecated. 
A webservice input message.


OUTPUT_MSG

public static final WsMsgType OUTPUT_MSG
Deprecated. 
A webservice output message.


FAULT_MSG

public static final WsMsgType FAULT_MSG
Deprecated. 
A webservice fault message.

Method Detail

values

public static final WsMsgType[] values()
Deprecated. 
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(WsMsgType c : WsMsgType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static WsMsgType valueOf(java.lang.String name)
Deprecated. 
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

The JTR Project is licensed under GPL version 2