Enum WebServiceConstants
- java.lang.Object
-
- java.lang.Enum<WebServiceConstants>
-
- com.sun.tools.ws.processor.modeler.annotation.WebServiceConstants
-
- All Implemented Interfaces:
Serializable,Comparable<WebServiceConstants>
public enum WebServiceConstants extends Enum<WebServiceConstants>
- Author:
- dkohlert
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEANFAULT_INFOJAXWS_PACKAGE_PDPD_JAXWS_PACKAGE_PDRESPONSESERVICE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static WebServiceConstantsvalueOf(String name)Returns the enum constant of this type with the specified name.static WebServiceConstants[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERVICE
public static final WebServiceConstants SERVICE
-
JAXWS_PACKAGE_PD
public static final WebServiceConstants JAXWS_PACKAGE_PD
-
PD_JAXWS_PACKAGE_PD
public static final WebServiceConstants PD_JAXWS_PACKAGE_PD
-
BEAN
public static final WebServiceConstants BEAN
-
FAULT_INFO
public static final WebServiceConstants FAULT_INFO
-
RESPONSE
public static final WebServiceConstants RESPONSE
-
-
Method Detail
-
values
public static WebServiceConstants[] 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 (WebServiceConstants c : WebServiceConstants.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebServiceConstants 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 nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
-