Uses of Interface
org.tquadrat.foundation.javacomposer.ClassName
Packages that use ClassName
Package
Description
JavaComposer is a Java toolkit for the generation of Java source
code.
The implementations for the interfaces from the package
org.tquadrat.foundation.javacomposer
.-
Uses of ClassName in org.tquadrat.foundation.javacomposer
Methods in org.tquadrat.foundation.javacomposer that return ClassNameModifier and TypeMethodDescriptionClassName.annotated
(List<AnnotationSpec> annotations) Creates a new instance for an implementation ofClassName
as a copy of this one, but with the given annotations added.static ClassName
ClassName.from
(CharSequence packageName, CharSequence simpleName, CharSequence... simpleNames) Returns a class name created from the given parts.
For example, calling this method with package name"java.util"
and simple names"Map"
and"Entry"
yieldsjava.util.Map.Entry
.static ClassName
Creates a new instance for an implementation ofClassName
from an instance ofClass
.static ClassName
ClassName.from
(TypeElement element) Returns the class name for the givenTypeElement
instance.ClassName.nestedClass
(CharSequence name) Returns a new instance for an implementation ofClassName
for the specifiedname
as nested inside this class.ClassName.peerClass
(CharSequence name) Creates a class that shares the same enclosing package or class.ParameterizedTypeName.rawType()
Returns the raw type for this parameterised type name.ClassName.topLevelClassName()
Returns the top class in this nesting group.ClassName.withoutAnnotations()
Creates a new instance for an implementation ofClassName
as a copy of this one, but without any annotations.Methods in org.tquadrat.foundation.javacomposer that return types with arguments of type ClassNameModifier and TypeMethodDescriptionClassName.parentClass()
Returns the enclosing class, likeMap
forjava.util.Map.Entry
.Methods in org.tquadrat.foundation.javacomposer with parameters of type ClassNameModifier and TypeMethodDescriptionFieldSpec.Builder.addAnnotation
(ClassName annotation) Adds an annotation for the field.MethodSpec.Builder.addAnnotation
(ClassName annotationClass) Adds an annotation for the method.ParameterSpec.Builder.addAnnotation
(ClassName annotationClassName) Adds an annotation for the parameter.TypeSpec.Builder.addAnnotation
(ClassName annotation) Adds an annotation for the type to build.CodeBlock.Builder.addStaticImport
(ClassName className, String... names) Adds a static import.JavaFile.Builder.addStaticImport
(ClassName className, String... names) Adds a static import.MethodSpec.Builder.addStaticImport
(ClassName className, String... names) Adds a static import.TypeSpec.Builder.addStaticImport
(ClassName className, String... names) Adds a static import.final AnnotationSpec.Builder
JavaComposer.annotationBuilder
(ClassName type) Creates a builder for an instance of an implementation forAnnotationSpec
from the givenClassName
instance.final TypeSpec.Builder
JavaComposer.annotationTypeBuilder
(ClassName className) Creates a builder for an annotation.final TypeSpec.Builder
JavaComposer.classBuilder
(ClassName className) Creates a builder for a regular class.int
final TypeSpec.Builder
JavaComposer.enumBuilder
(ClassName className) Creates a builder for anenum
type.static ParameterizedTypeName
Returns a parameterised type, applying the given type arguments to the given raw type.final TypeSpec.Builder
JavaComposer.interfaceBuilder
(ClassName className) Creates a builder for an interface.final TypeSpec.Builder
JavaComposer.recordBuilder
(ClassName className) Creates a builder for a record. -
Uses of ClassName in org.tquadrat.foundation.javacomposer.internal
Classes in org.tquadrat.foundation.javacomposer.internal that implement ClassNameModifier and TypeClassDescriptionfinal class
The implementation ofClassName
for a fully-qualified class name for top-level and member classes.Methods in org.tquadrat.foundation.javacomposer.internal that return types with arguments of type ClassNameModifier and TypeMethodDescriptionClassNameImpl.parentClass()
Returns the enclosing class, likeMap
forjava.util.Map.Entry
.Methods in org.tquadrat.foundation.javacomposer.internal with parameters of type ClassNameModifier and TypeMethodDescriptionFieldSpecImpl.BuilderImpl.addAnnotation
(ClassName annotation) Adds an annotation for the field.MethodSpecImpl.BuilderImpl.addAnnotation
(ClassName annotationClass) Adds an annotation for the method.ParameterSpecImpl.BuilderImpl.addAnnotation
(ClassName annotationClassName) Adds an annotation for the parameter.final TypeSpecImpl.BuilderImpl
TypeSpecImpl.BuilderImpl.addAnnotation
(ClassName annotation) Adds an annotation for the type to build.CodeBlockImpl.BuilderImpl.addStaticImport
(ClassName className, String... names) Adds a static import.final JavaFileImpl.BuilderImpl
JavaFileImpl.BuilderImpl.addStaticImport
(ClassName className, String... names) Adds a static import.MethodSpecImpl.BuilderImpl.addStaticImport
(ClassName className, String... names) Adds a static import.final TypeSpecImpl.BuilderImpl
TypeSpecImpl.BuilderImpl.addStaticImport
(ClassName className, String... names) Adds a static import.final int
static final ParameterizedTypeNameImpl
Returns a parameterised type, applying the given type arguments to the given raw type.