Annotation Type MapConfiguration


  • @Documented
    @Inherited
    @Retention(RUNTIME)
    @Target(FIELD)
    public @interface MapConfiguration
    Provides the system with the information necessary to write data into maps
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.Class<?> keyClass
      Determines the type of keys in the map
      java.lang.Class<? extends java.util.Map> mapClass
      Determines the Map implementation used
      java.lang.Class<?> valueClass
      Determines the type of values in the map
    • Element Detail

      • keyClass

        java.lang.Class<?> keyClass
        Determines the type of keys in the map
      • valueClass

        java.lang.Class<?> valueClass
        Determines the type of values in the map
      • mapClass

        java.lang.Class<? extends java.util.Map> mapClass
        Determines the Map implementation used