javafx.util
Interface BuilderFactory
All Known Implementing Classes:
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface BuilderFactory
Interface representing a builder factory. Builder factories are used to produce builders.
Since:
JavaFX 2.0
-
Method Summary
All MethodsInstance MethodsAbstract Methods Modifier and Type Method and Description Builder<?>getBuilder(Class<?> type)Returns a builder suitable for constructing instances of the given type.
-
Method Detail
-
getBuilder
Builder<?> getBuilder(Class<?> type)
Returns a builder suitable for constructing instances of the given type.Parameters:
type-Returns:
A builder for the given type, or null if this factory does not produce builders for the type.
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.