Enum ModelerConstants
- java.lang.Object
-
- java.lang.Enum<ModelerConstants>
-
- com.sun.tools.ws.processor.modeler.ModelerConstants
-
- All Implemented Interfaces:
Serializable,Comparable<ModelerConstants>
public enum ModelerConstants extends Enum<ModelerConstants>
- Author:
- WS Development Team
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static ModelerConstantsvalueOf(String name)Returns the enum constant of this type with the specified name.static ModelerConstants[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FALSE_STR
public static final ModelerConstants FALSE_STR
-
ZERO_STR
public static final ModelerConstants ZERO_STR
-
NULL_STR
public static final ModelerConstants NULL_STR
-
ARRAY_STR
public static final ModelerConstants ARRAY_STR
-
IOEXCEPTION_CLASSNAME
public static final ModelerConstants IOEXCEPTION_CLASSNAME
-
BOOLEAN_CLASSNAME
public static final ModelerConstants BOOLEAN_CLASSNAME
-
BOXED_BOOLEAN_CLASSNAME
public static final ModelerConstants BOXED_BOOLEAN_CLASSNAME
-
BYTE_CLASSNAME
public static final ModelerConstants BYTE_CLASSNAME
-
BYTE_ARRAY_CLASSNAME
public static final ModelerConstants BYTE_ARRAY_CLASSNAME
-
BOXED_BYTE_CLASSNAME
public static final ModelerConstants BOXED_BYTE_CLASSNAME
-
BOXED_BYTE_ARRAY_CLASSNAME
public static final ModelerConstants BOXED_BYTE_ARRAY_CLASSNAME
-
CLASS_CLASSNAME
public static final ModelerConstants CLASS_CLASSNAME
-
CHAR_CLASSNAME
public static final ModelerConstants CHAR_CLASSNAME
-
BOXED_CHAR_CLASSNAME
public static final ModelerConstants BOXED_CHAR_CLASSNAME
-
DOUBLE_CLASSNAME
public static final ModelerConstants DOUBLE_CLASSNAME
-
BOXED_DOUBLE_CLASSNAME
public static final ModelerConstants BOXED_DOUBLE_CLASSNAME
-
FLOAT_CLASSNAME
public static final ModelerConstants FLOAT_CLASSNAME
-
BOXED_FLOAT_CLASSNAME
public static final ModelerConstants BOXED_FLOAT_CLASSNAME
-
INT_CLASSNAME
public static final ModelerConstants INT_CLASSNAME
-
BOXED_INTEGER_CLASSNAME
public static final ModelerConstants BOXED_INTEGER_CLASSNAME
-
LONG_CLASSNAME
public static final ModelerConstants LONG_CLASSNAME
-
BOXED_LONG_CLASSNAME
public static final ModelerConstants BOXED_LONG_CLASSNAME
-
SHORT_CLASSNAME
public static final ModelerConstants SHORT_CLASSNAME
-
BOXED_SHORT_CLASSNAME
public static final ModelerConstants BOXED_SHORT_CLASSNAME
-
BIGDECIMAL_CLASSNAME
public static final ModelerConstants BIGDECIMAL_CLASSNAME
-
BIGINTEGER_CLASSNAME
public static final ModelerConstants BIGINTEGER_CLASSNAME
-
CALENDAR_CLASSNAME
public static final ModelerConstants CALENDAR_CLASSNAME
-
DATE_CLASSNAME
public static final ModelerConstants DATE_CLASSNAME
-
STRING_CLASSNAME
public static final ModelerConstants STRING_CLASSNAME
-
STRING_ARRAY_CLASSNAME
public static final ModelerConstants STRING_ARRAY_CLASSNAME
-
QNAME_CLASSNAME
public static final ModelerConstants QNAME_CLASSNAME
-
VOID_CLASSNAME
public static final ModelerConstants VOID_CLASSNAME
-
OBJECT_CLASSNAME
public static final ModelerConstants OBJECT_CLASSNAME
-
SOAPELEMENT_CLASSNAME
public static final ModelerConstants SOAPELEMENT_CLASSNAME
-
IMAGE_CLASSNAME
public static final ModelerConstants IMAGE_CLASSNAME
-
MIME_MULTIPART_CLASSNAME
public static final ModelerConstants MIME_MULTIPART_CLASSNAME
-
SOURCE_CLASSNAME
public static final ModelerConstants SOURCE_CLASSNAME
-
DATA_HANDLER_CLASSNAME
public static final ModelerConstants DATA_HANDLER_CLASSNAME
-
URI_CLASSNAME
public static final ModelerConstants URI_CLASSNAME
-
COLLECTION_CLASSNAME
public static final ModelerConstants COLLECTION_CLASSNAME
-
LIST_CLASSNAME
public static final ModelerConstants LIST_CLASSNAME
-
SET_CLASSNAME
public static final ModelerConstants SET_CLASSNAME
-
VECTOR_CLASSNAME
public static final ModelerConstants VECTOR_CLASSNAME
-
STACK_CLASSNAME
public static final ModelerConstants STACK_CLASSNAME
-
LINKED_LIST_CLASSNAME
public static final ModelerConstants LINKED_LIST_CLASSNAME
-
ARRAY_LIST_CLASSNAME
public static final ModelerConstants ARRAY_LIST_CLASSNAME
-
HASH_SET_CLASSNAME
public static final ModelerConstants HASH_SET_CLASSNAME
-
TREE_SET_CLASSNAME
public static final ModelerConstants TREE_SET_CLASSNAME
-
MAP_CLASSNAME
public static final ModelerConstants MAP_CLASSNAME
-
HASH_MAP_CLASSNAME
public static final ModelerConstants HASH_MAP_CLASSNAME
-
TREE_MAP_CLASSNAME
public static final ModelerConstants TREE_MAP_CLASSNAME
-
HASHTABLE_CLASSNAME
public static final ModelerConstants HASHTABLE_CLASSNAME
-
PROPERTIES_CLASSNAME
public static final ModelerConstants PROPERTIES_CLASSNAME
-
JAX_WS_MAP_ENTRY_CLASSNAME
public static final ModelerConstants JAX_WS_MAP_ENTRY_CLASSNAME
-
-
Method Detail
-
values
public static ModelerConstants[] 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 (ModelerConstants c : ModelerConstants.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelerConstants 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()
-
-