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

org.hibernate.boot.jaxb.mapping.spi.CollectionAttribute Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.boot.jaxb.mapping.spi;

import java.util.List;
import jakarta.persistence.EnumType;
import jakarta.persistence.TemporalType;

/**
 * Common interface for Jaxb bindings that represent persistent collection attributes.
 *
 * @author Brett Meyer
 */
public interface CollectionAttribute extends FetchableAttribute {

	String getOrderBy();

	void setOrderBy(String value);

	JaxbOrderColumn getOrderColumn();

	void setOrderColumn(JaxbOrderColumn value);

	JaxbMapKey getMapKey();

	void setMapKey(JaxbMapKey value);

	JaxbMapKeyClass getMapKeyClass();

	void setMapKeyClass(JaxbMapKeyClass value);

	TemporalType getMapKeyTemporal();

	void setMapKeyTemporal(TemporalType value);

	EnumType getMapKeyEnumerated();

	void setMapKeyEnumerated(EnumType value);

	List getMapKeyAttributeOverride();

	List getMapKeyConvert();

	JaxbMapKeyColumn getMapKeyColumn();

	void setMapKeyColumn(JaxbMapKeyColumn value);

	List getMapKeyJoinColumn();

	JaxbForeignKey getMapKeyForeignKey();

	void setMapKeyForeignKey(JaxbForeignKey value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy