Class SimpleGroovyType
- java.lang.Object
- 
- org.codehaus.groovy.tools.groovydoc.SimpleGroovyType
 
- 
- All Implemented Interfaces:
- GroovyType
 
 public class SimpleGroovyType extends java.lang.Object implements GroovyType 
- 
- 
Constructor SummaryConstructors Constructor Description SimpleGroovyType(java.lang.String typeName)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisPrimitive()java.lang.StringqualifiedTypeName()The qualified name of this type excluding any dimension information.java.lang.StringsimpleTypeName()The unqualified name of this type excluding any dimension or nesting information.java.lang.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
 
- 
 
- 
- 
- 
Method Detail- 
typeNamepublic java.lang.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 java.lang.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 java.lang.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
 
 
- 
 
-