Interface CtEnumValue<T>

Type Parameters:
T - the type of the enum, hence equal to the type of getParent().
All Superinterfaces:
Cloneable, CtElement, CtField<T>, CtModifiable, CtNamedElement, CtQueryable, CtRHSReceiver<T>, CtShadowable, CtTypedElement<T>, CtTypeMember, CtVariable<T>, CtVisitable, FactoryAccessor, Serializable, SourcePositionHolder
All Known Implementing Classes:
CtEnumValueImpl

public interface CtEnumValue<T> extends CtField<T>
Corresponds to one enum value specified in an enumeration. If the enum value implicitly calls a constructor (see example below), it is stored in the default expression of the field as CtConstructorCall,
     class enum {
         ENUM_VALUE("default expression.");
     }