Package com.ibm.wsspi.anno.util
Enum Util_InternMap.ValueType
- java.lang.Object
-
- java.lang.Enum<Util_InternMap.ValueType>
-
- com.ibm.wsspi.anno.util.Util_InternMap.ValueType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Util_InternMap.ValueType>
- Enclosing interface:
- Util_InternMap
public static enum Util_InternMap.ValueType extends java.lang.Enum<Util_InternMap.ValueType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description VT_CLASS_NAME
VT_CLASS_REFERENCE
VT_CLASS_RESOURCE
VT_FIELD_NAME
VT_METHOD_NAME
VT_OTHER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Util_InternMap.ValueType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Util_InternMap.ValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VT_CLASS_RESOURCE
public static final Util_InternMap.ValueType VT_CLASS_RESOURCE
-
VT_CLASS_REFERENCE
public static final Util_InternMap.ValueType VT_CLASS_REFERENCE
-
VT_CLASS_NAME
public static final Util_InternMap.ValueType VT_CLASS_NAME
-
VT_FIELD_NAME
public static final Util_InternMap.ValueType VT_FIELD_NAME
-
VT_METHOD_NAME
public static final Util_InternMap.ValueType VT_METHOD_NAME
-
VT_OTHER
public static final Util_InternMap.ValueType VT_OTHER
-
-
Method Detail
-
values
public static Util_InternMap.ValueType[] 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 (Util_InternMap.ValueType c : Util_InternMap.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Util_InternMap.ValueType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-