Class AbstractArrayLiteral<T extends java.lang.annotation.Annotation>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.Object[] array
      The values for this annotation.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected AbstractArrayLiteral​(java.lang.Object[] array)
      Constructs a new array-based annotation literal.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Class<? extends java.lang.annotation.Annotation> annotationType()
      Method returns the type of the annotation literal.
      boolean equals​(java.lang.Object o)  
      int hashCode()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.lang.annotation.Annotation

        toString
    • Field Detail

      • array

        protected java.lang.Object[] array
        The values for this annotation.
    • Constructor Detail

      • AbstractArrayLiteral

        protected AbstractArrayLiteral​(java.lang.Object[] array)
        Constructs a new array-based annotation literal.
        Parameters:
        array - the values.
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object o)
        Specified by:
        equals in interface java.lang.annotation.Annotation
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface java.lang.annotation.Annotation
      • annotationType

        public java.lang.Class<? extends java.lang.annotation.Annotation> annotationType()
        Method returns the type of the annotation literal. The value is resolved lazily during the first call of this method.
        Specified by:
        annotationType in interface java.lang.annotation.Annotation
        Returns:
        annotation type of this literal.