Uses of Class
net.sf.jasperreports.engine.type.OnErrorTypeEnum

Packages that use OnErrorTypeEnum
net.sf.jasperreports.engine Provides access to the library's main functionality through façade classes for compiling, filling and exporting reports and also publishes the library's main interfaces and classes. 
net.sf.jasperreports.engine.base Contains base implementations for the library's main interfaces. 
net.sf.jasperreports.engine.design Contains design time implementations for the library's main interfaces as well as report compiling tools. 
net.sf.jasperreports.engine.fill Contains fill time implementations for the library's main interfaces and the entire engine used in the filling process (the actual core of JasperReports). 
net.sf.jasperreports.engine.type   
 

Uses of OnErrorTypeEnum in net.sf.jasperreports.engine
 

Methods in net.sf.jasperreports.engine that return OnErrorTypeEnum
 OnErrorTypeEnum JRImage.getOnErrorTypeValue()
          Indicates how the engine will treat a missing image.
 OnErrorTypeEnum JRPrintImage.getOnErrorTypeValue()
           
 

Methods in net.sf.jasperreports.engine with parameters of type OnErrorTypeEnum
static JRRenderable JRImageRenderer.getInstance(java.io.File file, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getRenderable(File, OnErrorTypeEnum).
static JRRenderable JRImageRenderer.getInstance(java.awt.Image image, byte imageType, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getRenderable(Image, ImageTypeEnum, OnErrorTypeEnum).
static JRRenderable JRImageRenderer.getInstance(java.awt.Image img, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getRenderable(Image, OnErrorTypeEnum).
static JRRenderable JRImageRenderer.getInstance(java.io.InputStream is, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getRenderable(InputStream, OnErrorTypeEnum).
static JRRenderable JRImageRenderer.getInstance(java.lang.String imageLocation, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getRenderable(String, OnErrorTypeEnum).
static JRRenderable JRImageRenderer.getInstance(java.lang.String imageLocation, OnErrorTypeEnum onErrorType, boolean isLazy)
          Deprecated. Replaced by RenderableUtil.getRenderable(String, OnErrorTypeEnum, boolean).
static JRRenderable JRImageRenderer.getInstance(java.lang.String imageLocation, OnErrorTypeEnum onErrorType, boolean isLazy, java.lang.ClassLoader classLoader, java.net.URLStreamHandlerFactory urlHandlerFactory, FileResolver fileResolver)
          Deprecated. Replaced by JRImageRenderer.getInstance(String, OnErrorTypeEnum, boolean).
static JRRenderable JRImageRenderer.getInstance(java.net.URL url, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getRenderable(URL, OnErrorTypeEnum).
static JRImageRenderer JRImageRenderer.getOnErrorRenderer(OnErrorTypeEnum onErrorType, JRException e)
           
 Renderable RenderableUtil.getOnErrorRenderer(OnErrorTypeEnum onErrorType, JRException e)
           
static JRImageRenderer JRImageRenderer.getOnErrorRenderer(OnErrorTypeEnum onErrorType, JRRuntimeException e)
           
 Renderable RenderableUtil.getOnErrorRenderer(OnErrorTypeEnum onErrorType, JRRuntimeException e)
           
static JRRenderable JRImageRenderer.getOnErrorRendererForDimension(JRRenderable renderer, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getOnErrorRendererForDimension(Renderable, OnErrorTypeEnum).
 Renderable RenderableUtil.getOnErrorRendererForDimension(Renderable renderer, OnErrorTypeEnum onErrorType)
           
static JRImageRenderer JRImageRenderer.getOnErrorRendererForImage(JasperReportsContext jasperReportsContext, JRImageRenderer renderer, OnErrorTypeEnum onErrorType)
           
static JRImageRenderer JRImageRenderer.getOnErrorRendererForImage(JRImageRenderer renderer, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by JRImageRenderer.getOnErrorRendererForImage(JasperReportsContext, JRImageRenderer, OnErrorTypeEnum).
static JRRenderable JRImageRenderer.getOnErrorRendererForImageData(JRRenderable renderer, OnErrorTypeEnum onErrorType)
          Deprecated. Replaced by RenderableUtil.getOnErrorRendererForImageData(Renderable, OnErrorTypeEnum).
 Renderable RenderableUtil.getOnErrorRendererForImageData(Renderable renderer, OnErrorTypeEnum onErrorType)
           
 Renderable RenderableUtil.getRenderable(java.io.File file, OnErrorTypeEnum onErrorType)
           
 Renderable RenderableUtil.getRenderable(java.awt.Image image, ImageTypeEnum imageType, OnErrorTypeEnum onErrorType)
          Creates and returns an instance of the JRImageRenderer class after encoding the image object using an image encoder that supports the supplied image type.
 Renderable RenderableUtil.getRenderable(java.awt.Image img, OnErrorTypeEnum onErrorType)
           
 Renderable RenderableUtil.getRenderable(java.io.InputStream is, OnErrorTypeEnum onErrorType)
           
 Renderable RenderableUtil.getRenderable(java.lang.String imageLocation, OnErrorTypeEnum onErrorType)
           
 Renderable RenderableUtil.getRenderable(java.lang.String imageLocation, OnErrorTypeEnum onErrorType, boolean isLazy)
           
 Renderable RenderableUtil.getRenderable(java.net.URL url, OnErrorTypeEnum onErrorType)
           
protected  Renderable RenderableUtil.handleImageError(java.lang.Exception error, OnErrorTypeEnum onErrorType)
          public Renderable getOnErrorRendererForImage(Renderable renderer, OnErrorTypeEnum onErrorType) throws JRException { try { renderer.getImage(); return renderer; } catch (JRException e) { return getOnErrorRenderer(onErrorType, e); } }
 void JRImage.setOnErrorType(OnErrorTypeEnum onErrorTypeEnum)
          Specifies how the engine should treat a missing image.
 void JRPrintImage.setOnErrorType(OnErrorTypeEnum onErrorType)
           
 

Uses of OnErrorTypeEnum in net.sf.jasperreports.engine.base
 

Fields in net.sf.jasperreports.engine.base declared as OnErrorTypeEnum
protected  OnErrorTypeEnum JRBaseImage.onErrorTypeValue
           
protected  OnErrorTypeEnum JRBasePrintImage.onErrorTypeValue
           
 

Methods in net.sf.jasperreports.engine.base that return OnErrorTypeEnum
 OnErrorTypeEnum JRBaseImage.getOnErrorTypeValue()
           
 OnErrorTypeEnum JRBasePrintImage.getOnErrorTypeValue()
           
 

Methods in net.sf.jasperreports.engine.base with parameters of type OnErrorTypeEnum
 void JRBaseImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue)
           
 void JRBasePrintImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue)
           
 

Uses of OnErrorTypeEnum in net.sf.jasperreports.engine.design
 

Fields in net.sf.jasperreports.engine.design declared as OnErrorTypeEnum
protected  OnErrorTypeEnum JRDesignImage.onErrorTypeValue
           
 

Methods in net.sf.jasperreports.engine.design that return OnErrorTypeEnum
 OnErrorTypeEnum JRDesignImage.getOnErrorTypeValue()
           
 

Methods in net.sf.jasperreports.engine.design with parameters of type OnErrorTypeEnum
 void JRDesignImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue)
           
 

Uses of OnErrorTypeEnum in net.sf.jasperreports.engine.fill
 

Fields in net.sf.jasperreports.engine.fill declared as OnErrorTypeEnum
protected  OnErrorTypeEnum JRTemplateImage.onErrorTypeValue
           
 

Methods in net.sf.jasperreports.engine.fill that return OnErrorTypeEnum
 OnErrorTypeEnum JRTemplateImage.getOnErrorTypeValue()
           
 OnErrorTypeEnum JRFillImage.getOnErrorTypeValue()
           
 OnErrorTypeEnum JRTemplatePrintImage.getOnErrorTypeValue()
           
 

Methods in net.sf.jasperreports.engine.fill with parameters of type OnErrorTypeEnum
 void JRTemplateImage.setOnErrorType(OnErrorTypeEnum onErrorTypeValue)
           
 void JRFillImage.setOnErrorType(OnErrorTypeEnum onErrorType)
           
 void JRTemplatePrintImage.setOnErrorType(OnErrorTypeEnum onErrorType)
           
 

Uses of OnErrorTypeEnum in net.sf.jasperreports.engine.type
 

Methods in net.sf.jasperreports.engine.type that return OnErrorTypeEnum
static OnErrorTypeEnum OnErrorTypeEnum.getByName(java.lang.String name)
           
static OnErrorTypeEnum OnErrorTypeEnum.getByValue(byte value)
           
static OnErrorTypeEnum OnErrorTypeEnum.getByValue(java.lang.Byte value)
           
static OnErrorTypeEnum OnErrorTypeEnum.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OnErrorTypeEnum[] OnErrorTypeEnum.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 



© 2001-2010 Jaspersoft Corporation www.jaspersoft.com