return (myType.getCategory() == JSQLType.JAVA_PRIMITIVE);
}
}
public String getJavaTypeName() throws StandardException {
JSQLType myType = getJSQLType();
if (myType == null) {
return "";
}
switch(myType.getCategory()) {
case JSQLType.JAVA_CLASS:
return myType.getJavaClassName();
case JSQLType.JAVA_PRIMITIVE:
return JSQLType.getPrimitiveName(myType.getPrimitiveKind());
default:
assert false : "Inappropriate JSQLType: " + myType;
}