Package spoon.reflect.declaration
Interface CtField<T>
- All Superinterfaces:
Cloneable,CtElement,CtModifiable,CtNamedElement,CtQueryable,CtRHSReceiver<T>,CtShadowable,CtTypedElement<T>,CtTypeMember,CtVariable<T>,CtVisitable,FactoryAccessor,Serializable,SourcePositionHolder
- All Known Subinterfaces:
CtEnumValue<T>
- All Known Implementing Classes:
CtEnumValueImpl,CtFieldImpl
This element defines a field declaration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic StringThe separator for a string representation of a field. -
Method Summary
Modifier and TypeMethodDescriptionclone()Clone the element which calls this method in a new object.Useful proxy toCtVariable.getDefaultExpression().Returns the corresponding reference.<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, updateAllParentsBelowMethods 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, setVisibilityMethods inherited from interface spoon.reflect.declaration.CtNamedElement
getSimpleName, setSimpleNameMethods inherited from interface spoon.reflect.visitor.chain.CtQueryable
filterChildren, map, mapMethods inherited from interface spoon.reflect.declaration.CtShadowable
isShadow, setShadowMethods inherited from interface spoon.reflect.declaration.CtTypedElement
getType, setTypeMethods inherited from interface spoon.reflect.declaration.CtTypeMember
getDeclaringType, getTopLevelTypeMethods inherited from interface spoon.reflect.declaration.CtVariable
getDefaultExpression, isPartOfJointDeclaration, setDefaultExpressionMethods inherited from interface spoon.reflect.visitor.CtVisitable
acceptMethods inherited from interface spoon.processing.FactoryAccessor
getFactory, setFactory
-
Field Details
-
FIELD_SEPARATOR
The separator for a string representation of a field.- See Also:
- Constant Field Values
-
-
Method Details
-
getReference
CtFieldReference<T> getReference()Description copied from interface:CtNamedElementReturns the corresponding reference.- Specified by:
getReferencein interfaceCtNamedElement- Specified by:
getReferencein interfaceCtVariable<T>
-
getAssignment
CtExpression<T> getAssignment()Useful proxy toCtVariable.getDefaultExpression().- Specified by:
getAssignmentin interfaceCtRHSReceiver<T>
-
setAssignment
Description copied from interface:CtRHSReceiverSets the right-hand side expression (RHS) of the "=" operator.- Specified by:
setAssignmentin interfaceCtRHSReceiver<T>
-
clone
Description copied from interface:CtElementClone 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.- Specified by:
clonein interfaceCtElement- Specified by:
clonein interfaceCtNamedElement
-