com.ibm.wsspi.anno.util

Enum Util_InternMap.ValueType

  1. java.lang.Object
  2. extended byjava.lang.Enum<Util_InternMap.ValueType>
  3. extended bycom.ibm.wsspi.anno.util.Util_InternMap.ValueType
All implemented interfaces:
java.io.Serializable, java.lang.Comparable<Util_InternMap.ValueType>
Enclosing interface:
Util_InternMap

  1. public static enum Util_InternMap.ValueType
  2. extends java.lang.Enum<Util_InternMap.ValueType>

Enum Constant Summary

Enum Constant and Description
VT_CLASS_NAME
VT_CLASS_REFERENCE
VT_CLASS_RESOURCE
VT_FIELD_NAME
VT_METHOD_NAME
VT_OTHER

Method Summary

Modifier and Type Method and Description
  1. static
  2. Util_InternMap.ValueType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
  1. static
  2. Util_InternMap.ValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

Enum Constant Detail

VT_CLASS_RESOURCE

  1. public static final Util_InternMap.ValueType VT_CLASS_RESOURCE

VT_CLASS_REFERENCE

  1. public static final Util_InternMap.ValueType VT_CLASS_REFERENCE

VT_CLASS_NAME

  1. public static final Util_InternMap.ValueType VT_CLASS_NAME

VT_FIELD_NAME

  1. public static final Util_InternMap.ValueType VT_FIELD_NAME

VT_METHOD_NAME

  1. public static final Util_InternMap.ValueType VT_METHOD_NAME

VT_OTHER

  1. public static final Util_InternMap.ValueType VT_OTHER

Method Detail

values

  1. 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

  1. 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 name
java.lang.NullPointerException - if the argument is null