public enum WSDLDescriptorKind extends Enum<WSDLDescriptorKind>
Enum Constant and Description |
---|
ELEMENT
wsdl:part is defined using element attribute.
|
TYPE
wsdl:part is defined using type attribute.
|
Modifier and Type | Method and Description |
---|---|
static WSDLDescriptorKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WSDLDescriptorKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WSDLDescriptorKind ELEMENT
for exmaple, <wsdl:part name="foo" element="ns1:FooElement">
public static final WSDLDescriptorKind TYPE
for exmaple, <wsdl:part name="foo" element="ns1:FooType">
public static WSDLDescriptorKind[] values()
for (WSDLDescriptorKind c : WSDLDescriptorKind.values()) System.out.println(c);
public static WSDLDescriptorKind 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 nullCopyright © 2015 Oracle Corporation. All rights reserved.