Interface JavaFile.Builder
- All Known Implementing Classes:
JavaFileImpl.BuilderImpl
- Enclosing interface:
JavaFile
@ClassVersion(sourceVersion="$Id: JavaFile.java 1085 2024-01-05 16:23:28Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public static sealed interface JavaFile.Builder
permits JavaFileImpl.BuilderImpl
The definition for a builder for an instance of an implementation of
JavaFile
.- Author:
- Square,Inc.
- Modified by:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: JavaFile.java 1085 2024-01-05 16:23:28Z tquadrat $
- Since:
- 0.0.5
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.javacomposer.JavaFile.Builder"
-
Method Summary
Modifier and TypeMethodDescriptionaddFileComment
(String format, Object... args) Adds text to the file comment.addStaticImport
(Class<?> clazz, String... names) Adds a static import.addStaticImport
(Enum<?> constant) Adds a static import for the givenenum
value.addStaticImport
(ClassName className, String... names) Adds a static import.build()
Builds an instance ofJavaFile
from this builder.skipJavaLangImports
(boolean flag)
-
Method Details
-
addFileComment
Adds text to the file comment.- Parameters:
format
- The format.args
- The arguments.- Returns:
- This
Builder
instance.
-
addStaticImport
Adds a static import.- Parameters:
clazz
- The class.names
- The names of the elements from the given class that are to be imported.- Returns:
- This
Builder
instance.
-
addStaticImport
Adds a static import.- Parameters:
className
- The class.names
- The names of the elements from the given class that are to be imported.- Returns:
- This
Builder
instance.
-
addStaticImport
Adds a static import for the givenenum
value.- Parameters:
constant
- Theenum
value.- Returns:
- This
Builder
instance.
-
build
Builds an instance ofJavaFile
from this builder.- Returns:
- The
JavaFile
instance.
-
skipJavaLangImports
Call this to omit imports for classes from the package
java.lang
, such asString
orMath
.By default, JavaComposer explicitly imports types in
java.lang
to defend against naming conflicts. Suppose an (ill-advised) class is namedcom.example.String
. Whenjava.lang
imports are skipped, generated code incom.example
that referencesjava.lang.String
will getcom.example.String
instead.- Parameters:
flag
-true
means that the imports for classes from the packagejava.lang
are skipped,false
means that the imports are added explicitly.- Returns:
- This
Builder
instance.
-