Class SimpleGroovyType
- java.lang.Object
- 
- org.codehaus.groovy.tools.groovydoc.SimpleGroovyType
 
- 
- All Implemented Interfaces:
- GroovyType
 
 public class SimpleGroovyType extends Object implements GroovyType 
- 
- 
Constructor SummaryConstructors Constructor Description SimpleGroovyType(String typeName)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisPrimitive()StringqualifiedTypeName()The qualified name of this type excluding any dimension information.StringsimpleTypeName()The unqualified name of this type excluding any dimension or nesting information.StringtypeName()The unqualified name of this type excluding any dimension information.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.codehaus.groovy.groovydoc.GroovyTypetoString
 
- 
 
- 
- 
- 
Constructor Detail- 
SimpleGroovyTypepublic SimpleGroovyType(String typeName) 
 
- 
 - 
Method Detail- 
typeNamepublic String typeName() Description copied from interface:GroovyTypeThe unqualified name of this type excluding any dimension information. For example, a two dimensional array of String returns "String".- Specified by:
- typeNamein interface- GroovyType
 
 - 
isPrimitivepublic boolean isPrimitive() - Specified by:
- isPrimitivein interface- GroovyType
 
 - 
qualifiedTypeNamepublic String qualifiedTypeName() Description copied from interface:GroovyTypeThe qualified name of this type excluding any dimension information. For example, a two dimensional array of String returns "java.lang.String".- Specified by:
- qualifiedTypeNamein interface- GroovyType
 
 - 
simpleTypeNamepublic String simpleTypeName() Description copied from interface:GroovyTypeThe unqualified name of this type excluding any dimension or nesting information. For example, the classOuter.Innerreturns "Inner".- Specified by:
- simpleTypeNamein interface- GroovyType
 
 
- 
 
-