Package net.sf.jasperreports.engine.type

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

Related Classes of net.sf.jasperreports.engine.type.HyperlinkTypeEnum

Copyright © 2018 www.massapicom. 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.