Class AnnotationValue.ForMissingValue.Loaded<W>

    • Field Detail

      • type

        private final java.lang.Class<? extends java.lang.annotation.Annotation> type
        The annotation type.
      • property

        private final java.lang.String property
        The name of the property for which the annotation value is missing.
    • Constructor Detail

      • Loaded

        public Loaded​(java.lang.Class<? extends java.lang.annotation.Annotation> type,
                      java.lang.String property)
        Creates a new loaded representation for an unresolved property.
        Parameters:
        type - The annotation type.
        property - The name of the property for which the annotation value is missing.
    • Method Detail

      • getState

        public AnnotationValue.State getState()
        Returns the state of the represented loaded annotation value.
        Returns:
        The state represented by this instance.
      • resolve

        public W resolve()
        Resolves the value to the actual value of an annotation. Calling this method might throw a runtime exception if this value is either not defined or not resolved.
        Returns:
        The actual annotation value represented by this instance.
      • represents

        public boolean represents​(java.lang.Object value)
        Verifies if this loaded value represents the supplied loaded value.
        Parameters:
        value - A loaded annotation value.
        Returns:
        true if the supplied annotation value is represented by this annotation value.