Package io.github.factoryfx.soap
Enum SOAPClient.PROTOCOL_VERSION
- java.lang.Object
-
- java.lang.Enum<SOAPClient.PROTOCOL_VERSION>
-
- io.github.factoryfx.soap.SOAPClient.PROTOCOL_VERSION
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SOAPClient.PROTOCOL_VERSION>
- Enclosing class:
- SOAPClient<T>
public static enum SOAPClient.PROTOCOL_VERSION extends java.lang.Enum<SOAPClient.PROTOCOL_VERSION>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SOAPClient.PROTOCOL_VERSIONvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SOAPClient.PROTOCOL_VERSION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_1_1
public static final SOAPClient.PROTOCOL_VERSION _1_1
-
_1_2
public static final SOAPClient.PROTOCOL_VERSION _1_2
-
-
Method Detail
-
values
public static SOAPClient.PROTOCOL_VERSION[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SOAPClient.PROTOCOL_VERSION c : SOAPClient.PROTOCOL_VERSION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SOAPClient.PROTOCOL_VERSION 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 namejava.lang.NullPointerException- if the argument is null
-
-