Examples of HyperlinkTypeEnum


Examples of net.sf.jasperreports.engine.type.HyperlinkTypeEnum

   * @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
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.