Package org.codehaus.groovy.groovydoc
Interface GroovyType
- All Known Subinterfaces:
- GroovyClassDoc
- All Known Implementing Classes:
- ArrayClassDocWrapper,- ExternalGroovyClassDoc,- SimpleGroovyClassDoc,- SimpleGroovyType
public interface GroovyType
- 
Method SummaryModifier and TypeMethodDescriptionbooleanThe qualified name of this type excluding any dimension information.The unqualified name of this type excluding any dimension or nesting information.toString()The qualified name including any dimension information.typeName()The unqualified name of this type excluding any dimension information.
- 
Method Details- 
isPrimitiveboolean isPrimitive()
- 
qualifiedTypeNameString qualifiedTypeName()The qualified name of this type excluding any dimension information. For example, a two-dimensional array of String returns "java.lang.String".
- 
simpleTypeNameString simpleTypeName()The unqualified name of this type excluding any dimension or nesting information. For example, the classOuter.Innerreturns "Inner".
- 
typeNameString typeName()The unqualified name of this type excluding any dimension information. For example, a two-dimensional array of String returns "String".
- 
toStringString toString()The qualified name including any dimension information. For example, a two-dimensional array of String returns "java.lang.String[][]", and the parameterized typeList<Integer>returns "java.util.List<java.lang.Integer>".
 
-