public class JavaQNameImpl
extends java.lang.Object
Accessor class for JavaQName.
Modifier and Type | Field and Description |
---|---|
static JavaQName |
BOOLEAN
For use in return types or method parameters: The
boolean type.
|
static JavaQName |
BYTE
For use in return types or method parameters: The
byte type.
|
static JavaQName |
CHAR
For use in return types or method parameters: The
char type.
|
static JavaQName |
DOUBLE
For use in return types or method parameters: The
double type.
|
static JavaQName |
FLOAT
For use in return types or method parameters: The
float type.
|
static JavaQName |
INT
For use in return types or method parameters: The
int type.
|
static JavaQName |
LONG
For use in return types or method parameters: The
long type.
|
static JavaQName |
SHORT
For use in return types or method parameters: The
short type.
|
static JavaQName |
VOID
For use in return types or method parameters: The
void type.
|
Constructor and Description |
---|
JavaQNameImpl() |
Modifier and Type | Method and Description |
---|---|
static JavaQName |
getArray(JavaQName pQName)
Returns an instance of
JavaQName , which represents
an array. |
static JavaQName |
getInnerInstance(JavaQName pQName,
java.lang.String pInnerClassName)
Returns the fully qualified name of an inner class of
pQName with the name pInnerClassName . |
static JavaQName |
getInstance(java.lang.Class pClass) |
static JavaQName |
getInstance(java.lang.String pClassName)
Returns an instance with the given class name.
|
static JavaQName |
getInstance(java.lang.String pPackageName,
java.lang.String pClassName) |
public static final JavaQName VOID
For use in return types or method parameters: The void type.
public static final JavaQName BOOLEAN
For use in return types or method parameters: The boolean type.
public static final JavaQName BYTE
For use in return types or method parameters: The byte type.
public static final JavaQName SHORT
For use in return types or method parameters: The short type.
public static final JavaQName INT
For use in return types or method parameters: The int type.
public static final JavaQName LONG
For use in return types or method parameters: The long type.
public static final JavaQName FLOAT
For use in return types or method parameters: The float type.
public static final JavaQName DOUBLE
For use in return types or method parameters: The double type.
public static final JavaQName CHAR
For use in return types or method parameters: The char type.
public static JavaQName getInstance(java.lang.Class pClass)
public static JavaQName getInstance(java.lang.String pPackageName, java.lang.String pClassName)
public static JavaQName getInstance(java.lang.String pClassName)
Returns an instance with the given class name.
pClassName
- The class namepublic static JavaQName getArray(JavaQName pQName)
JavaQName
, which represents
an array. The array elements are instances of pQName
.