Enum Wsdl2JavaParam.Wsdl2JavaParamCollection
- java.lang.Object
-
- java.lang.Enum<Wsdl2JavaParam.Wsdl2JavaParamCollection>
-
- io.quarkiverse.cxf.deployment.codegen.Wsdl2JavaParam.Wsdl2JavaParamCollection
-
- All Implemented Interfaces:
Serializable,Comparable<Wsdl2JavaParam.Wsdl2JavaParamCollection>
- Enclosing class:
- Wsdl2JavaParam
public static enum Wsdl2JavaParam.Wsdl2JavaParamCollection extends Enum<Wsdl2JavaParam.Wsdl2JavaParamCollection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description commaSeparated-optionName val1,val2multiParam-optionName val1 -optionName val2noneUsed for non-collectionsxjcSpecial for-xjc*family of options
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Wsdl2JavaParam.Wsdl2JavaParamCollectionvalueOf(String name)Returns the enum constant of this type with the specified name.static Wsdl2JavaParam.Wsdl2JavaParamCollection[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
commaSeparated
public static final Wsdl2JavaParam.Wsdl2JavaParamCollection commaSeparated
-optionName val1,val2
-
multiParam
public static final Wsdl2JavaParam.Wsdl2JavaParamCollection multiParam
-optionName val1 -optionName val2
-
xjc
public static final Wsdl2JavaParam.Wsdl2JavaParamCollection xjc
Special for-xjc*family of options
-
none
public static final Wsdl2JavaParam.Wsdl2JavaParamCollection none
Used for non-collections
-
-
Method Detail
-
values
public static Wsdl2JavaParam.Wsdl2JavaParamCollection[] 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 (Wsdl2JavaParam.Wsdl2JavaParamCollection c : Wsdl2JavaParam.Wsdl2JavaParamCollection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Wsdl2JavaParam.Wsdl2JavaParamCollection 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
-
-