public enum SoapProtocol extends Enum<SoapProtocol>
Enum Constant and Description |
---|
SOAP_1_1
SOAP 1.1协议
|
SOAP_1_2
SOAP 1.2协议
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
获取版本值信息
|
static SoapProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SoapProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SoapProtocol SOAP_1_1
public static final SoapProtocol SOAP_1_2
public static SoapProtocol[] values()
for (SoapProtocol c : SoapProtocol.values()) System.out.println(c);
public static SoapProtocol 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 getValue()
Copyright © 2024. All rights reserved.