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

Packages that use RotationEnum
net.sf.jasperreports.components.barbecue   
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.export Provides utility classes for exporting reports to various popular formats. 
net.sf.jasperreports.engine.export.oasis   
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   
net.sf.jasperreports.engine.util Utility classes. 
 

Uses of RotationEnum in net.sf.jasperreports.components.barbecue
 

Methods in net.sf.jasperreports.components.barbecue that return RotationEnum
 RotationEnum StandardBarbecueComponent.getOwnRotation()
           
 RotationEnum BarbecueComponent.getOwnRotation()
           
 RotationEnum StandardBarbecueComponent.getRotation()
           
 RotationEnum BarbecueComponent.getRotation()
           
static RotationEnum BarbecueStyleResolver.getRotationValue(JRComponentElement element)
           
 

Methods in net.sf.jasperreports.components.barbecue with parameters of type RotationEnum
 void StandardBarbecueComponent.setRotation(RotationEnum rotation)
           
 void BarbecueRenderer.setRotation(RotationEnum rotation)
           
 

Uses of RotationEnum in net.sf.jasperreports.engine
 

Methods in net.sf.jasperreports.engine that return RotationEnum
 RotationEnum JRPrintText.getOwnRotationValue()
          Gets the text own rotation.
 RotationEnum JRCommonText.getOwnRotationValue()
          Gets the text own rotation.
 RotationEnum JRStyle.getOwnRotationValue()
          Gets the text own rotation.
 RotationEnum JRCommonText.getRotationValue()
          Gets the text rotation.
 RotationEnum JRStyle.getRotationValue()
          Gets the text rotation.
 

Methods in net.sf.jasperreports.engine with parameters of type RotationEnum
 void JRPrintText.setRotation(RotationEnum rotationEnum)
          Sets the text rotation.
 void JRCommonText.setRotation(RotationEnum rotationEnum)
          Sets the text rotation.
 void JRStyle.setRotation(RotationEnum rotation)
           
 

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

Fields in net.sf.jasperreports.engine.base declared as RotationEnum
protected  RotationEnum JRBaseTextElement.rotationValue
           
protected  RotationEnum JRBasePrintText.rotationValue
           
protected  RotationEnum JRBaseStyle.rotationValue
           
 

Methods in net.sf.jasperreports.engine.base that return RotationEnum
 RotationEnum JRBaseTextElement.getOwnRotationValue()
           
 RotationEnum JRBasePrintText.getOwnRotationValue()
           
 RotationEnum JRBaseStyle.getOwnRotationValue()
           
 RotationEnum JRBaseTextElement.getRotationValue()
           
 RotationEnum JRBasePrintText.getRotationValue()
           
 RotationEnum JRBaseStyle.getRotationValue()
           
 

Methods in net.sf.jasperreports.engine.base with parameters of type RotationEnum
 void JRBaseTextElement.setRotation(RotationEnum rotationValue)
           
 void JRBasePrintText.setRotation(RotationEnum rotationValue)
           
 void JRBaseStyle.setRotation(RotationEnum rotationValue)
           
 

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

Fields in net.sf.jasperreports.engine.design declared as RotationEnum
protected  RotationEnum JRDesignTextElement.rotationValue
           
 

Methods in net.sf.jasperreports.engine.design that return RotationEnum
 RotationEnum JRDesignTextElement.getOwnRotationValue()
           
 RotationEnum JRDesignTextElement.getRotationValue()
           
 

Methods in net.sf.jasperreports.engine.design with parameters of type RotationEnum
 void JRDesignTextElement.setRotation(RotationEnum rotationValue)
           
 

Uses of RotationEnum in net.sf.jasperreports.engine.export
 

Fields in net.sf.jasperreports.engine.export declared as RotationEnum
 RotationEnum JRXlsAbstractExporter.TextAlignHolder.rotation
           
 

Constructors in net.sf.jasperreports.engine.export with parameters of type RotationEnum
JRXlsAbstractExporter.TextAlignHolder(HorizontalAlignEnum horizontalAlignment, VerticalAlignEnum verticalAlignment, RotationEnum rotation)
           
 

Uses of RotationEnum in net.sf.jasperreports.engine.export.oasis
 

Methods in net.sf.jasperreports.engine.export.oasis with parameters of type RotationEnum
static java.lang.String ParagraphStyle.getHorizontalAlignment(HorizontalAlignEnum horizontalAlignment, VerticalAlignEnum verticalAlignment, RotationEnum rotation)
           
static java.lang.String ParagraphStyle.getVerticalAlignment(HorizontalAlignEnum horizontalAlignment, VerticalAlignEnum verticalAlignment, RotationEnum rotation)
           
 

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

Methods in net.sf.jasperreports.engine.fill that return RotationEnum
 RotationEnum JRFillTextElement.getOwnRotationValue()
           
 RotationEnum JRTemplatePrintText.getOwnRotationValue()
           
 RotationEnum JRTemplateText.getOwnRotationValue()
           
 RotationEnum JRFillTextElement.getRotationValue()
           
 RotationEnum JRTemplatePrintText.getRotationValue()
           
 RotationEnum JRTemplateText.getRotationValue()
           
 

Methods in net.sf.jasperreports.engine.fill with parameters of type RotationEnum
 void JRFillTextElement.setRotation(RotationEnum rotation)
           
 void JRTemplatePrintText.setRotation(RotationEnum rotation)
           
 void JRTemplateText.setRotation(RotationEnum rotationValue)
          Sets the text rotation.
 

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

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

Uses of RotationEnum in net.sf.jasperreports.engine.util
 

Methods in net.sf.jasperreports.engine.util that return RotationEnum
static RotationEnum JRStyleResolver.getRotationValue(JRCommonText element)
           
static RotationEnum JRStyleResolver.getRotationValue(JRStyle style)
           
 

Methods in net.sf.jasperreports.engine.util with parameters of type RotationEnum
static void JRBoxUtil.rotate(JRLineBox box, RotationEnum rotation)
           
 



© 2001-2010 Jaspersoft Corporation www.jaspersoft.com