org.apache.ws.jaxme.js
public interface JavaQName extends Comparable, Serializable
A qualified class name, including package name. Instances of JavaQName are obtained by invoking private methods of the class JavaQNameImpl.
Method Summary | |
---|---|
String | getClassName() Returns the JavaQName's class name. |
String | getInnerClassName() If the class is an inner class: Returns the name of the inner class. |
JavaQName | getInstanceClass() If the method |
JavaQName | getObjectType() If the class is primitive: Returns the corresponding
object type. |
String | getOuterClassName() If the class is an inner class: Returns the name of the enclosing class. |
String | getPackageName() Returns the JavaQName's package name. |
String | getPrimitiveConversionMethod() If the class is primitive: Returns the name of the
corresponding object classes method for converting
the object into a primitive value. |
boolean | isArray() Returns whether the class described by the JavaQName is actually an array class. |
boolean | isImportable() Returns whether this class may be imported. |
boolean | isInnerClass() Returns whether this class is an inner class. |
boolean | isPrimitive() Returns whether this is a primitive class. |
Returns the JavaQName's class name. This is the composition of getOuterClassName and JavaQName.
If the class is an inner class: Returns the name of the inner class. Otherwise returns getClassName.
If the method isArray()
returns true,
you may use this method to obtain the instance class.
Throws: IllegalStateException This JavaQName is no array,
and isArray()
returns false.
If the class is an inner class: Returns the name of the enclosing class. Otherwise returns null.
Returns the JavaQName's package name. The empty string represents the default package.
Returns whether the class described by the JavaQName is
actually an array class. If so, you may use the
getInstanceClass()
method to determine the
JavaQName of the array elements.
Returns whether this class may be imported. For instance, this is not the case for primitive classes.
Returns whether this class is an inner class.