org.apfloat.spi.BuilderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apfloat Show documentation
Show all versions of apfloat Show documentation
High performance arbitrary precision arithmetic library
The newest version!
/*
* MIT License
*
* Copyright (c) 2002-2023 Mikko Tommila
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.apfloat.spi;
import org.apfloat.ApfloatContext;
import org.apfloat.ApfloatRuntimeException;
/**
* A BuilderFactory
object contains factory methods for building
* the various parts of an apfloat using the Builder pattern. There
* is no separate "director" object in the apfloat SPI; it is suggested
* that the ApfloatImpl
implementation itself acts as the director,
* calling the different builders directly.
*
* @version 1.9.0
* @author Mikko Tommila
*/
public interface BuilderFactory
{
/**
* Returns an ApfloatBuilder
object.
*
* @return An ApfloatBuilder
object.
*/
public ApfloatBuilder getApfloatBuilder();
/**
* Returns a DataStorageBuilder
object.
*
* @return A DataStorageBuilder
object.
*/
public DataStorageBuilder getDataStorageBuilder();
/**
* Returns an AdditionBuilder
object.
*
* @param The element type of the additions.
* @param elementType The element type of the additions.
*
* @return An AdditionBuilder
object.
*
* @throws IllegalArgumentException In case of unsupported element type.
*
* @since 1.7.0
*/
public AdditionBuilder getAdditionBuilder(Class elementType)
throws IllegalArgumentException;
/**
* Returns a ConvolutionBuilder
object.
*
* @return A ConvolutionBuilder
object.
*/
public ConvolutionBuilder getConvolutionBuilder();
/**
* Returns an NTTBuilder
object.
*
* @return An NTTBuilder
object.
*/
public NTTBuilder getNTTBuilder();
/**
* Returns a MatrixBuilder
object.
*
* @return A MatrixBuilder
object.
*
* @since 1.7.0
*/
public MatrixBuilder getMatrixBuilder();
/**
* Returns a CarryCRTBuilder
object.
*
* @param The element array type of the carry-CRT.
* @param elementArrayType The element array type of the carry-CRT.
*
* @return A CarryCRTBuilder
object.
*
* @throws IllegalArgumentException In case of unsupported element array type.
*
* @since 1.7.0
*/
public CarryCRTBuilder getCarryCRTBuilder(Class elementArrayType)
throws IllegalArgumentException;
/**
* Returns an ExecutionBuilder
object.
*
* @return An ExecutionBuilder
object.
*
* @since 1.9.0
*/
public ExecutionBuilder getExecutionBuilder();
/**
* Returns the element type of the data objects created.
*
* @return The element type of the data objects created.
*
* @since 1.7.0
*/
public Class> getElementType();
/**
* Returns the element array type of the data objects created.
*
* @return The element array type of the data objects created.
*
* @since 1.7.0
*/
public Class> getElementArrayType();
/**
* Returns the element size of the data objects created, in bytes.
*
* @return The element size of the data objects created, in bytes.
*
* @since 1.7.0
*/
public int getElementSize();
/**
* Shuts down the builder factory. Clean-up tasks can be executed by this method.
* This method is invoked by the {@link ApfloatContext} when cleanupAtExit is enabled.
*
* @since 1.6.2
*/
public void shutdown()
throws ApfloatRuntimeException;
/**
* Do garbage collection and related things such as empty any reference queues.
*
* @since 1.6.2
*/
public void gc()
throws ApfloatRuntimeException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy