Package io.ebean.plugin
Interface Property
-
- All Known Subinterfaces:
PropertyAssocMany
public interface Property
Property of a entity bean that can be read.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Return the name of the property.Class<?>
getPropertyType()
Return the type of the property.Object
getVal(Object bean)
Return the value of the property on the given bean.boolean
isMany()
Return true if this is a OneToMany or ManyToMany property.
-
-
-
Method Detail
-
getPropertyType
@Nonnull Class<?> getPropertyType()
Return the type of the property.
-
isMany
boolean isMany()
Return true if this is a OneToMany or ManyToMany property.
-
-