Annotation Type AdaptationGetter


  • @Retention(RUNTIME)
    @Target(METHOD)
    public @interface AdaptationGetter
    Marks a method as being a getter method for a given adaptation field. Example: '@AdaptationGetter("address") String getAddress()'. Fields which are optional (whose values may be null) mark their getter methods with the @AdaptationNullable annotation.
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      String value
      The name of the adaptation field.
    • Element Detail

      • value

        String value
        The name of the adaptation field. Must be specified.