Interface EnumInfo

All Superinterfaces:
TypeInfo

public interface EnumInfo extends 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

    Modifier and Type
    Method
    Description
     
  • Method Details

    • getEnumName

      String getEnumName()