Class ClassFieldMap

    • Constructor Summary

      Constructors 
      Constructor Description
      ClassFieldMap​(java.lang.Class<?> clazz, org.slf4j.Logger log)
      Standard constructor
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.reflect.Field findField​(java.lang.String name)
      Find a Field using the field name.
      java.lang.Class<?> getCachedClass()
      Returns the class object whose fields are cached by this map.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ClassFieldMap

        public ClassFieldMap​(java.lang.Class<?> clazz,
                             org.slf4j.Logger log)
        Standard constructor
        Parameters:
        clazz - The class for which this ClassMap gets constructed.
        log - logger
    • Method Detail

      • getCachedClass

        public java.lang.Class<?> getCachedClass()
        Returns the class object whose fields are cached by this map.
        Returns:
        The class object whose fields are cached by this map.
      • findField

        public java.lang.reflect.Field findField​(java.lang.String name)
        Find a Field using the field name.
        Parameters:
        name - The field name to look up.
        Returns:
        A Field object representing the field to invoke or null.