Package org.apache.cxf.annotations
Enum WSDLDocumentation.Placement
- java.lang.Object
- 
- java.lang.Enum<WSDLDocumentation.Placement>
- 
- org.apache.cxf.annotations.WSDLDocumentation.Placement
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<WSDLDocumentation.Placement>
 - Enclosing class:
- WSDLDocumentation
 
 public static enum WSDLDocumentation.Placement extends Enum<WSDLDocumentation.Placement> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static WSDLDocumentation.PlacementvalueOf(String name)Returns the enum constant of this type with the specified name.static WSDLDocumentation.Placement[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
DEFAULTpublic static final WSDLDocumentation.Placement DEFAULT 
 - 
TOPpublic static final WSDLDocumentation.Placement TOP 
 - 
INPUT_MESSAGEpublic static final WSDLDocumentation.Placement INPUT_MESSAGE 
 - 
OUTPUT_MESSAGEpublic static final WSDLDocumentation.Placement OUTPUT_MESSAGE 
 - 
FAULT_MESSAGEpublic static final WSDLDocumentation.Placement FAULT_MESSAGE 
 - 
PORT_TYPEpublic static final WSDLDocumentation.Placement PORT_TYPE 
 - 
PORT_TYPE_OPERATIONpublic static final WSDLDocumentation.Placement PORT_TYPE_OPERATION 
 - 
PORT_TYPE_OPERATION_INPUTpublic static final WSDLDocumentation.Placement PORT_TYPE_OPERATION_INPUT 
 - 
PORT_TYPE_OPERATION_OUTPUTpublic static final WSDLDocumentation.Placement PORT_TYPE_OPERATION_OUTPUT 
 - 
PORT_TYPE_OPERATION_FAULTpublic static final WSDLDocumentation.Placement PORT_TYPE_OPERATION_FAULT 
 - 
BINDINGpublic static final WSDLDocumentation.Placement BINDING 
 - 
BINDING_OPERATIONpublic static final WSDLDocumentation.Placement BINDING_OPERATION 
 - 
BINDING_OPERATION_INPUTpublic static final WSDLDocumentation.Placement BINDING_OPERATION_INPUT 
 - 
BINDING_OPERATION_OUTPUTpublic static final WSDLDocumentation.Placement BINDING_OPERATION_OUTPUT 
 - 
BINDING_OPERATION_FAULTpublic static final WSDLDocumentation.Placement BINDING_OPERATION_FAULT 
 - 
SERVICEpublic static final WSDLDocumentation.Placement SERVICE 
 - 
SERVICE_PORTpublic static final WSDLDocumentation.Placement SERVICE_PORT 
 
- 
 - 
Method Detail- 
valuespublic static WSDLDocumentation.Placement[] 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 (WSDLDocumentation.Placement c : WSDLDocumentation.Placement.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static WSDLDocumentation.Placement valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
- 
 
-