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 SummaryEnum Constants Enum Constant Description VT_CLASS_NAMEVT_CLASS_REFERENCEVT_CLASS_RESOURCEVT_FIELD_NAMEVT_METHOD_NAMEVT_OTHER
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Util_InternMap.ValueTypevalueOf(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_RESOURCEpublic static final Util_InternMap.ValueType VT_CLASS_RESOURCE 
 - 
VT_CLASS_REFERENCEpublic static final Util_InternMap.ValueType VT_CLASS_REFERENCE 
 - 
VT_CLASS_NAMEpublic static final Util_InternMap.ValueType VT_CLASS_NAME 
 - 
VT_FIELD_NAMEpublic static final Util_InternMap.ValueType VT_FIELD_NAME 
 - 
VT_METHOD_NAMEpublic static final Util_InternMap.ValueType VT_METHOD_NAME 
 - 
VT_OTHERpublic static final Util_InternMap.ValueType VT_OTHER 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-