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 Default Methods Deprecated Methods Modifier and Type Method Description default StringgetName()Deprecated.default Class<?>getPropertyType()Deprecated.default ObjectgetVal(Object bean)Deprecated.booleanisMany()Return true if this is a OneToMany or ManyToMany property.Stringname()Return the name of the property.Class<?>type()Return the type of the property.Objectvalue(Object bean)Return the value of the property on the given bean.
-
-
-
Method Detail
-
getName
@Deprecated default String getName()
Deprecated.Deprecated migrate to name().
-
getPropertyType
@Deprecated default Class<?> getPropertyType()
Deprecated.Deprecated migrate to type().
-
getVal
@Deprecated default Object getVal(Object bean)
Deprecated.Deprecated migrate to value().
-
isMany
boolean isMany()
Return true if this is a OneToMany or ManyToMany property.
-
-