Package io.ebean.plugin
Interface Property
- All Known Subinterfaces:
PropertyAssocMany
public interface Property
Property of a entity bean that can be read.
-
Method Summary
Modifier and TypeMethodDescriptiondefault StringgetName()Deprecated.default Class<?>Deprecated.default ObjectDeprecated.booleanisMany()Return true if this is a OneToMany or ManyToMany property.name()Return the name of the property.Class<?>type()Return the type of the property.Return the value of the property on the given bean.
-
Method Details
-
name
Return the name of the property. -
getName
Deprecated.Deprecated migrate to name(). -
type
Return the type of the property. -
getPropertyType
Deprecated.Deprecated migrate to type(). -
value
Return the value of the property on the given bean. -
getVal
Deprecated.Deprecated migrate to value(). -
isMany
boolean isMany()Return true if this is a OneToMany or ManyToMany property.
-