* @param linkType the link type
* @return the hyperlink type
*/
public static HyperlinkTypeEnum getHyperlinkTypeValue(String linkType)
{
HyperlinkTypeEnum type;
if (linkType == null)
{
type = HyperlinkTypeEnum.NONE;
}
else
{
HyperlinkTypeEnum builtinType = HyperlinkTypeEnum.getByName(linkType);
if (builtinType == null)
{
type = HyperlinkTypeEnum.CUSTOM;
}
else