Interface ParameterBuilder<T>
-
- Type Parameters:
T
- Type built by this builder
- All Known Implementing Classes:
BvParameters.Builder
,CfpParameters.Builder
,EcfpParameters.Builder
,FvParameters.Builder
,MaccsParameters.Builder
,PfParameters.Builder
,TverskyParameters.Builder
@Beta @PublicAPI public interface ParameterBuilder<T>
This interface represents a builder.This interface enforces that an instance of an immutable class can be retrieved using the
build()
method. Usually the built class (T) should be annotated withBuilderClass
Please note that this interface is marked with @Beta annotation, so it can be subject of incompatible changes or removal in later releases.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
build()
Constructs an immutable instance of T.
-
-
-
Method Detail
-
build
T build()
Constructs an immutable instance of T.- Returns:
- An immutable instance of T
-
-