All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.plugin.Property Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.plugin;

/**
 * Property of a entity bean that can be read.
 */
public interface Property {

  /**
   * Return the name of the property.
   */
  String name();

  /**
   * Return the type of the property.
   */
  Class type();

  /**
   * Return the value of the property on the given bean.
   */
  Object value(Object bean);

  /**
   * Return true if this is a OneToMany or ManyToMany property.
   */
  boolean isMany();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy