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

com.dooapp.gaedo.finders.Informer Maven / Gradle / Ivy

package com.dooapp.gaedo.finders;

import java.util.Collection;

import com.dooapp.gaedo.properties.Property;

/**
 * Informer is the root interface for objects providing informations upon a
 * given class.
* To a certain extend, it can be seen as an example of introspection * specialization.
* In order to allow usage of the {@link FieldInformer#equalsTo(Object)}, this interface is a subinterface of the {@link FieldInformer} interface. * @author Nicolas * */ public interface Informer extends FieldInformerAPI, FieldProjector { /** * get field informer for one of the fields of current object * @param string * @return a field informer for the given property name */ FieldInformer get(String string); /** * get field informer for one of the fields of current object with a given property path. * @param string * @param propertyPath collection of properties allowing access to this one * @return a field informer for the given property name */ FieldInformer get(String string, Collection propertyPath); /** * Get list of all field informers in this informer * @return */ Collection getAllFieldInformers(); /** * Get list of all fields in this informer * @return */ Collection getAllFields(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy