OPENJPA-240 Feature:Persistent field mapping support for XML column type.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@547830 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
David J. Wisneski 2007-06-15 23:44:31 +00:00
parent ee3c0b1dc4
commit d384dcb8fd
1 changed files with 7 additions and 0 deletions

View File

@ -708,4 +708,11 @@ public class Column
if (_flags == 0)
_flags = from._flags;
}
/**
* Whether this column is an XML type.
*/
public boolean isXML() {
return _typeName != null && _typeName.startsWith("XML");
}
}