Uses of Class
org.tquadrat.foundation.javacomposer.internal.ClassNameImpl
Packages that use ClassNameImpl
Package
Description
The implementations for the interfaces from the package
org.tquadrat.foundation.javacomposer
.-
Uses of ClassNameImpl in org.tquadrat.foundation.javacomposer.internal
Fields in org.tquadrat.foundation.javacomposer.internal declared as ClassNameImplModifier and TypeFieldDescriptionstatic final ClassNameImpl
ClassNameImpl.BOXED_BOOLEAN
The class name forBoolean
.static final ClassNameImpl
ClassNameImpl.BOXED_BYTE
The class name forByte
.static final ClassNameImpl
ClassNameImpl.BOXED_CHAR
The class name forCharacter
.static final ClassNameImpl
ClassNameImpl.BOXED_DOUBLE
The class name forDouble
.static final ClassNameImpl
ClassNameImpl.BOXED_FLOAT
The class name forFloat
.static final ClassNameImpl
ClassNameImpl.BOXED_INT
The class name forInteger
.static final ClassNameImpl
ClassNameImpl.BOXED_LONG
The class name forLong
.static final ClassNameImpl
ClassNameImpl.BOXED_SHORT
The class name forShort
.static final ClassNameImpl
ClassNameImpl.BOXED_VOID
The class name forVoid
.private final ClassNameImpl
ParameterizedTypeNameImpl.m_RawType
The class name for this type.static final ClassNameImpl
ClassNameImpl.OBJECT
The class name forObject
.Fields in org.tquadrat.foundation.javacomposer.internal with type parameters of type ClassNameImplModifier and TypeFieldDescriptionprivate final Optional
<ClassNameImpl> ClassNameImpl.m_EnclosingClassName
The enclosing class, or empty if this is not enclosed in another class.private final Map
<String, ClassNameImpl> CodeWriter.m_ImportableTypes
The types that can be imported.private final Map
<String, ClassNameImpl> CodeWriter.m_ImportedTypes
The imported types.Methods in org.tquadrat.foundation.javacomposer.internal that return ClassNameImplModifier and TypeMethodDescriptionfinal ClassNameImpl
ClassNameImpl.annotated
(List<AnnotationSpec> annotations) Creates a new instance for an implementation ofTypeName
as a copy of this one, but with the given annotations added.static final ClassNameImpl
ClassNameImpl.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 final ClassNameImpl
Creates a newClassName
instance from an instance ofClass
.static final ClassNameImpl
ClassNameImpl.from
(TypeElement element) Returns the class name for the givenTypeElement
instance.final ClassNameImpl
ClassNameImpl.nestedClass
(CharSequence name) Returns a new instance for an implementation ofClassName
for the specifiedname
as nested inside this class.final ClassNameImpl
ClassNameImpl.peerClass
(CharSequence name) Creates a class that shares the same enclosing package or class.final ClassNameImpl
ParameterizedTypeNameImpl.rawType()
Returns the raw type for this parameterised type name.private final ClassNameImpl
CodeWriter.stackClassName
(int stackDepth, String simpleName) Returns the class namedsimpleName
when nested in the class atstackDepth
.final ClassNameImpl
ClassNameImpl.topLevelClassName()
Returns the top class in this nesting group.final ClassNameImpl
ClassNameImpl.withoutAnnotations()
Creates a new instance for an implementation ofTypeName
as a copy of this one, but without any annotations.Methods in org.tquadrat.foundation.javacomposer.internal that return types with arguments of type ClassNameImplModifier and TypeMethodDescriptionprivate final List
<ClassNameImpl> ClassNameImpl.enclosingClasses()
Returns all enclosing classes inthis
, outermost first.final Optional
<ClassNameImpl> ClassNameImpl.enclosingClassName()
Returns the enclosing class, likeMap
forjava.util.Map.Entry
.final Map
<String, ClassNameImpl> CodeWriter.importedTypes()
Returns the imported types.private final Optional
<ClassNameImpl> Returns the class referenced bysimpleName
, using the current nesting context and imports.final Map
<String, ClassNameImpl> CodeWriter.suggestedImports()
Returns the types that should have been imported for this code.Methods in org.tquadrat.foundation.javacomposer.internal with parameters of type ClassNameImplModifier and TypeMethodDescriptionprivate final void
CodeWriter.importableType
(ClassNameImpl className) Marks the given type as importable.final String
CodeWriter.lookupName
(ClassNameImpl className) Returns the best name to identifyclassName
within the current context.Constructors in org.tquadrat.foundation.javacomposer.internal with parameters of type ClassNameImplModifierConstructorDescriptionClassNameImpl
(CharSequence packageName, ClassNameImpl enclosingClassName, CharSequence simpleName) Creates a newClassNameImpl
instance.ClassNameImpl
(CharSequence packageName, ClassNameImpl enclosingClassName, CharSequence simpleName, List<AnnotationSpecImpl> annotations) Creates a newClassNameImpl
instance.private
ParameterizedTypeNameImpl
(Optional<ParameterizedTypeNameImpl> enclosingType, ClassNameImpl rawType, List<? extends TypeNameImpl> typeArguments, List<AnnotationSpecImpl> annotations) Creates a newParameterizedTypeNameImpl
instance.ParameterizedTypeNameImpl
(ParameterizedTypeNameImpl enclosingType, ClassNameImpl rawType, List<? extends TypeNameImpl> typeArguments) Creates a newParameterizedTypeNameImpl
instance.private
ParameterizedTypeNameImpl
(ParameterizedTypeNameImpl enclosingType, ClassNameImpl rawType, List<? extends TypeNameImpl> typeArguments, List<AnnotationSpecImpl> ignored) Creates a newParameterizedTypeNameImpl
instance.Constructor parameters in org.tquadrat.foundation.javacomposer.internal with type arguments of type ClassNameImplModifierConstructorDescriptionClassNameImpl
(CharSequence packageName, Optional<ClassNameImpl> enclosingClassName, CharSequence simpleName) Creates a newClassNameImpl
instance.ClassNameImpl
(CharSequence packageName, Optional<ClassNameImpl> enclosingClassName, CharSequence simpleName, List<AnnotationSpecImpl> annotations) Creates a newClassNameImpl
instance.CodeWriter
(Appendable out, Layout layout, String indent, Map<String, ClassNameImpl> importedTypes, Set<String> staticImports) Deprecated, for removal: This API element is subject to removal in a future version.CodeWriter
(JavaComposer composer, Appendable out, Map<String, ClassNameImpl> importedTypes, Set<String> staticImports) Creates a newCodeWriter
instance.
CodeWriter(JavaComposer, Appendable)
instead.