# Identifiers.IdentifierName

## Summary

### Overview

`Identifiers.IdentifierName` is an abstract class that implements the `Annotation` interface.

### Inherited Methods

The class inherits methods from the `Annotation` interface:

| Method Signature | Description |
| --- | --- |
| `abstract Class<? extends Annotation> annotationType()` | Returns the annotation type of this annotation. |
| `abstract boolean equals(Object arg0)` | Compares this annotation with the specified object for equality. |
| `abstract int hashCode()` | Returns a hash code value for this annotation. |
| `abstract String toString()` | Returns a string representation of this annotation. |

## Types

- **Abstract Methods:**
  - `annotationType`
  - `equals`
  - `hashCode`
  - `toString`

### Related Links

- [Java Annotation Documentation](https://d.android.com/reference/java/lang/annotation/Annotation.html)
- [Java Class Documentation](https://d.android.com/reference/java/lang/Class.html)
