Enum RenderBox.BreakIndicator
- java.lang.Object
-
- java.lang.Enum<RenderBox.BreakIndicator>
-
- org.pentaho.reporting.engine.classic.core.layout.model.RenderBox.BreakIndicator
-
- All Implemented Interfaces:
Serializable
,Comparable<RenderBox.BreakIndicator>
- Enclosing class:
- RenderBox
public static enum RenderBox.BreakIndicator extends Enum<RenderBox.BreakIndicator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIRECT_MANUAL_BREAK
INDIRECT_MANUAL_BREAK
NO_MANUAL_BREAK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RenderBox.BreakIndicator
valueOf(String name)
Returns the enum constant of this type with the specified name.static RenderBox.BreakIndicator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_MANUAL_BREAK
public static final RenderBox.BreakIndicator NO_MANUAL_BREAK
-
DIRECT_MANUAL_BREAK
public static final RenderBox.BreakIndicator DIRECT_MANUAL_BREAK
-
INDIRECT_MANUAL_BREAK
public static final RenderBox.BreakIndicator INDIRECT_MANUAL_BREAK
-
-
Method Detail
-
values
public static RenderBox.BreakIndicator[] 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 (RenderBox.BreakIndicator c : RenderBox.BreakIndicator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RenderBox.BreakIndicator 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 nameNullPointerException
- if the argument is null
-
-