mirror of https://github.com/apache/openjpa.git
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:
parent
ee3c0b1dc4
commit
d384dcb8fd
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue