Enum SoapVersion
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum SoapVersion extends Enum<SoapVersion>
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<SoapVersion>entries
-
Method Summary
Modifier and Type Method Description abstract QNamegetEnvelopeQName()abstract QNamegetBodyQName()abstract QNamegetHeaderQName()abstract StringgetEnvelopeNamespace()abstract StringgetEncodingNamespace()abstract StringgetContentType()abstract StringgetFaultDetailNamespace()final SoapVersionvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<SoapVersion>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<SoapVersion>getEntries()-
-
Method Detail
-
getEnvelopeQName
abstract QName getEnvelopeQName()
-
getBodyQName
abstract QName getBodyQName()
-
getHeaderQName
abstract QName getHeaderQName()
-
getEnvelopeNamespace
abstract String getEnvelopeNamespace()
-
getEncodingNamespace
abstract String getEncodingNamespace()
-
getContentType
abstract String getContentType()
-
getFaultDetailNamespace
abstract String getFaultDetailNamespace()
-
valueOf
final SoapVersion valueOf(String value)
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.)
-
values
final Array<SoapVersion> 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.
-
getEntries
final EnumEntries<SoapVersion> getEntries()
-
-
-
-