Interface GenericBean

  • All Superinterfaces:
    Serializable

    public interface GenericBean
    extends Serializable
    BeanContext interface which is provide comman method to manipulate of object.
    Author:
    Ram Kishor
    • Method Detail

      • setProperty

        <T> T setProperty​(String _key,
                          T _value)
        these provides us to set value of key for object.
        Parameters:
        _key -
        _value -
        Returns:
      • getProperty

        <T> T getProperty​(String _key)
        these provides us to get value of key for object.
        Parameters:
        _key -
        Returns:
      • containsKey

        Boolean containsKey​(String _key)
        these provides us to check key which is contains or not for object.
        Parameters:
        _key -
        Returns:
      • containsValue

        Boolean containsValue​(String _key)
        these provides us to check value of key which is contains or not for object.
        Parameters:
        _key -
        Returns:
      • typeOfProperty

        Class<?> typeOfProperty​(String _key)
        these provides us to get type of key for object.
        Parameters:
        _key -
        Returns: