Class ClassName
java.lang.Object
io.micronaut.sourcegen.javapoet.TypeName
io.micronaut.sourcegen.javapoet.ClassName
- All Implemented Interfaces:
Comparable<ClassName>
A fully-qualified class name for top-level and member classes.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionannotated(List<AnnotationSpec> annotations) static ClassNameReturns a newClassNameinstance for the given fully-qualified class name string.Returns the full class name of this class.intReturns the enclosing class, likeMapforMap.Entry.static ClassNamestatic ClassNameReturns a class name created from the given parts.static ClassNameget(TypeElement element) Returns the class name forelement.booleannestedClass(String name) Returns a newClassNameinstance for the specifiednameas nested inside this class.Returns the package name, like"java.util"forMap.Entry.Returns a class that shares the same enclosing package or class.Return the binary name of a class.Returns the simple name of this class, like"Entry"forMap.Entry.Returns the top class in this nesting group.Methods inherited from class TypeName
annotated, box, concatAnnotations, equals, get, get, hashCode, isBoxedPrimitive, isPrimitive, toString, unbox
-
Field Details
-
OBJECT
-
-
Method Details
-
annotated
-
withoutAnnotations
- Overrides:
withoutAnnotationsin classTypeName
-
isAnnotated
public boolean isAnnotated()- Overrides:
isAnnotatedin classTypeName
-
packageName
Returns the package name, like"java.util"forMap.Entry. Returns the empty string for the default package. -
enclosingClassName
-
topLevelClassName
Returns the top class in this nesting group. Equivalent to chained calls toenclosingClassName()until the result's enclosing class is null. -
reflectionName
Return the binary name of a class. -
simpleNames
-
peerClass
-
nestedClass
-
simpleName
-
canonicalName
-
get
-
bestGuess
Returns a newClassNameinstance for the given fully-qualified class name string. This method assumes that the input is ASCII and follows typical Java style (lowercase package names, UpperCamelCase class names) and may produce incorrect results or throwIllegalArgumentExceptionotherwise. For that reason,get(Class)andget(Class)should be preferred as they can correctly createClassNameinstances without such restrictions. -
get
-
get
Returns the class name forelement. -
compareTo
- Specified by:
compareToin interfaceComparable<ClassName>
-