Interface IEntityAdaptor
-
public interface IEntityAdaptorInterface implemented by all entity adaptors
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringcode()Returns the code.java.util.Collection<IEntityPropertyAdaptor>properties()Returns collection of properties of the entityIEntityPropertyAdaptorproperty(java.lang.String propertyTypeCode)Returns the property by code of the property type.java.lang.StringpropertyRendered(java.lang.String propertyTypeCode)Returns the property value rendered as String by code of the property type.java.lang.StringpropertyValue(java.lang.String propertyTypeCode)Returns the property value by code of the property type.
-
-
-
Method Detail
-
code
java.lang.String code()
Returns the code.
-
property
IEntityPropertyAdaptor property(java.lang.String propertyTypeCode)
Returns the property by code of the property type.
-
propertyValue
java.lang.String propertyValue(java.lang.String propertyTypeCode)
Returns the property value by code of the property type.
-
propertyRendered
java.lang.String propertyRendered(java.lang.String propertyTypeCode)
Returns the property value rendered as String by code of the property type.
-
properties
java.util.Collection<IEntityPropertyAdaptor> properties()
Returns collection of properties of the entity
-
-