Class SimpleGroovyType
- java.lang.Object
-
- org.codehaus.groovy.tools.groovydoc.SimpleGroovyType
-
- All Implemented Interfaces:
GroovyType
public class SimpleGroovyType extends Object implements GroovyType
-
-
Constructor Summary
Constructors Constructor Description SimpleGroovyType(String typeName)
-
Method Summary
All 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.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.codehaus.groovy.groovydoc.GroovyType
toString
-
-
-
-
Constructor Detail
-
SimpleGroovyType
public SimpleGroovyType(String typeName)
-
-
Method Detail
-
typeName
public 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 interfaceGroovyType
-
isPrimitive
public boolean isPrimitive()
- Specified by:
isPrimitivein interfaceGroovyType
-
qualifiedTypeName
public 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 interfaceGroovyType
-
simpleTypeName
public 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 interfaceGroovyType
-
-