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

org.solovyev.common.math.MathRegistry Maven / Gradle / Ivy

/*
 * Copyright (c) 2009-2011. Created by serso aka se.solovyev.
 * For more information, please, contact [email protected]
 * or visit http://se.solovyev.org
 */

package org.solovyev.common.math;

import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.solovyev.common.JBuilder;

import java.util.List;

/**
 * User: serso
 * Date: 10/6/11
 * Time: 9:31 PM
 */
public interface MathRegistry {

	@NotNull
	List getEntities();

	@NotNull
	List getSystemEntities();

	T add(@NotNull JBuilder JBuilder);

	void remove(@NotNull T var);

	@NotNull
	List getNames();

	boolean contains(@NotNull final String name);

	@Nullable
	T get(@NotNull String name);

	@Nullable
	T getById(@NotNull Integer id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy