
org.hibernate.search.mapper.pojo.model.PojoModelProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-search-mapper-pojo-base Show documentation
Show all versions of hibernate-search-mapper-pojo-base Show documentation
Abstract base and common implementations for Hibernate Search Mappers for POJOs
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Red Hat Inc. and Hibernate Authors
*/
package org.hibernate.search.mapper.pojo.model;
import java.util.Collection;
import org.hibernate.search.util.common.annotation.Incubating;
/**
* A model element representing a property bound to a bridge.
*
* @see org.hibernate.search.mapper.pojo.bridge.PropertyBridge
*/
@Incubating
public interface PojoModelProperty extends PojoModelCompositeElement {
/**
* @return The name of this property.
*/
String name();
/**
* @param markerType A type of marker.
* @param The type of returned markers.
* @return A collection of markers with the given type found on this property.
*/
Collection markers(Class markerType);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy