Schnittstelle IExtendedModifier

Alle bekannten Implementierungsklassen:
Annotation, MarkerAnnotation, Modifier, NormalAnnotation, SingleMemberAnnotation

public interface IExtendedModifier
Common interface for AST nodes that represent modifiers or annotations.
 IExtendedModifier:
   Modifier
   Annotation
 
Seit:
3.1
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    boolean
    Returns whether this extended modifier is an annotation.
    boolean
    Returns whether this extended modifier is a standard modifier.
  • Methodendetails

    • isModifier

      boolean isModifier()
      Returns whether this extended modifier is a standard modifier.
      Gibt zurück:
      true if this is a standard modifier (instance of Modifier), and false otherwise
    • isAnnotation

      boolean isAnnotation()
      Returns whether this extended modifier is an annotation.
      Gibt zurück:
      true if this is an annotation (instance of a subclass of Annotation), and false otherwise