Package com.hp.ucmdb.api.classmodel
Interface EnumInfo
- All Superinterfaces:
- TypeInfo
Service to get name of an enum.
 
Usage of this interface is demonstrated below:
  Attribute enumAttr = 
       typeObjectDefinition.getAttribute(AttributesUtils.PROPERTY_ENUM);
  EnumInfo enumInfo = (EnumInfo)enumAttr.getTypeInfo();
  String enumName = enumInfo.getEnumName();
  
 - 
Method Summary
- 
Method Details- 
getEnumNameString getEnumName()
 
-