Package org.brijframework
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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleancontainsKey(String _key)these provides us to check key which is contains or not for object.BooleancontainsValue(String _key)these provides us to check value of key which is contains or not for object.<T> TgetProperty(String _key)these provides us to get value of key for object.<T> TsetProperty(String _key, T _value)these provides us to set value of key for object.Class<?>typeOfProperty(String _key)these provides us to get type of key for object.
-
-
-
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:
-
-