Package spoon.reflect.declaration
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
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."); }
-
Field Summary
Fields inherited from interface spoon.reflect.declaration.CtField
FIELD_SEPARATOR
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Clone the element which calls this method in a new object.<U extends CtRHSReceiver<T>>
UsetAssignment(CtExpression<T> assignment)
Sets the right-hand side expression (RHS) of the "=" operator.Methods inherited from interface spoon.reflect.declaration.CtElement
addAnnotation, addComment, asIterable, delete, descendantIterator, getAllMetadata, getAnnotatedChildren, getAnnotation, getAnnotation, getAnnotations, getComments, getDirectChildren, getDocComment, getElements, getMetadata, getMetadataKeys, getOriginalSourceFragment, getParent, getParent, getParent, getPath, getPosition, getReferencedTypes, getRoleInParent, getShortRepresentation, getValueByRole, hasAnnotation, hasParent, isImplicit, isParentInitialized, prettyprint, putMetadata, removeAnnotation, removeComment, replace, replace, setAllMetadata, setAnnotations, setComments, setDocComment, setImplicit, setParent, setPosition, setPositions, setValueByRole, toString, toStringDebug, updateAllParentsBelow
Methods inherited from interface spoon.reflect.declaration.CtField
getAssignment, getReference
Methods inherited from interface spoon.reflect.declaration.CtModifiable
addModifier, getExtendedModifiers, getModifiers, getVisibility, hasModifier, isAbstract, isFinal, isNative, isPrivate, isProtected, isPublic, isStatic, isStrictfp, isSynchronized, isTransient, isVolatile, removeModifier, setExtendedModifiers, setModifiers, setVisibility
Methods inherited from interface spoon.reflect.declaration.CtNamedElement
getSimpleName, setSimpleName
Methods inherited from interface spoon.reflect.visitor.chain.CtQueryable
filterChildren, map, map
Methods inherited from interface spoon.reflect.declaration.CtShadowable
isShadow, setShadow
Methods inherited from interface spoon.reflect.declaration.CtTypedElement
getType, setType
Methods inherited from interface spoon.reflect.declaration.CtTypeMember
getDeclaringType, getTopLevelType
Methods inherited from interface spoon.reflect.declaration.CtVariable
getDefaultExpression, isPartOfJointDeclaration, setDefaultExpression
Methods inherited from interface spoon.reflect.visitor.CtVisitable
accept
Methods inherited from interface spoon.processing.FactoryAccessor
getFactory, setFactory
-
Method Details
-
clone
CtEnumValue clone()Description copied from interface:CtElement
Clone the element which calls this method in a new object. Note that that references are kept as is, and thus, so if you clone whole classes or methods, some parts of the cloned element (eg executable references) may still point to the initial element. In this case, consider using methodsRefactoring.copyType(CtType)
andRefactoring.copyMethod(CtMethod)
instead which does additional work beyond cloning. -
setAssignment
Description copied from interface:CtRHSReceiver
Sets the right-hand side expression (RHS) of the "=" operator.- Specified by:
setAssignment
in interfaceCtField<T>
- Specified by:
setAssignment
in interfaceCtRHSReceiver<T>
-