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

org.hibernate.annotations.common.reflection.XClass Maven / Gradle / Ivy

There is a newer version: 6.0.6.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.annotations.common.reflection;

import java.util.List;

/**
 * @author Paolo Perrotta
 * @author Davide Marchignoli
 */
public interface XClass extends XAnnotatedElement {

	public static final String ACCESS_PROPERTY = "property";
	public static final String ACCESS_FIELD = "field";

	static final Filter DEFAULT_FILTER = new Filter() {

		public boolean returnStatic() {
			return false;
		}

		public boolean returnTransient() {
			return false;
		}
	};

	String getName();

	/**
	 * @see Class#getSuperclass()
	 */
	XClass getSuperclass();

	/**
	 * @see Class#getInterfaces()
	 */
	XClass[] getInterfaces();

	/**
	 * see Class#isInterface()
	 */
	boolean isInterface();

	boolean isAbstract();

	boolean isPrimitive();

	boolean isEnum();

	boolean isAssignableFrom(XClass c);

	List getDeclaredProperties(String accessType);

	List getDeclaredProperties(String accessType, Filter filter);

	/**
	 * Returns the Methods defined by this class.
	 */
	List getDeclaredMethods();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy