org.pentaho.reporting.engine.classic.core.layout
Enum Renderer.LayoutResult

java.lang.Object
  extended by java.lang.Enum<Renderer.LayoutResult>
      extended by org.pentaho.reporting.engine.classic.core.layout.Renderer.LayoutResult
All Implemented Interfaces:
Serializable, Comparable<Renderer.LayoutResult>
Enclosing interface:
Renderer

public static enum Renderer.LayoutResult
extends Enum<Renderer.LayoutResult>


Enum Constant Summary
LAYOUT_NO_PAGEBREAK
           
LAYOUT_PAGEBREAK
           
LAYOUT_UNVALIDATABLE
           
 
Method Summary
static Renderer.LayoutResult valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Renderer.LayoutResult[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

LAYOUT_UNVALIDATABLE

public static final Renderer.LayoutResult LAYOUT_UNVALIDATABLE

LAYOUT_NO_PAGEBREAK

public static final Renderer.LayoutResult LAYOUT_NO_PAGEBREAK

LAYOUT_PAGEBREAK

public static final Renderer.LayoutResult LAYOUT_PAGEBREAK
Method Detail

values

public static Renderer.LayoutResult[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Renderer.LayoutResult c : Renderer.LayoutResult.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Renderer.LayoutResult valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null