com.ibm.pdp.maf.rpp.pac.report
Enum ReportLabelJumpTypeValues

java.lang.Object
  extended by java.lang.Enum<ReportLabelJumpTypeValues>
      extended by com.ibm.pdp.maf.rpp.pac.report.ReportLabelJumpTypeValues
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ReportLabelJumpTypeValues>

public enum ReportLabelJumpTypeValues
extends java.lang.Enum<ReportLabelJumpTypeValues>

List of jump types for labels.


Enum Constant Summary
_0
          Overprinting.
_1
          Single line spacing .
_2
          2 lines spacing.
_3
          3 lines spacing.
_4
          4 lines spacing.
_5
          5 lines spacing.
_6
          6 lines spacing.
_7
          7 lines spacing.
_8
          8 lines spacing.
_9
          2 lines spacing.
STAR
          A page break is generated on the line.
 
Method Summary
static ReportLabelJumpTypeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ReportLabelJumpTypeValues[] 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

_0

public static final ReportLabelJumpTypeValues _0

Overprinting.

This value is reserved for type 3800 layouts. It is interpreted as a single-line spacing in the layout description with formatting.


_1

public static final ReportLabelJumpTypeValues _1

Single line spacing .


_2

public static final ReportLabelJumpTypeValues _2

2 lines spacing.


_3

public static final ReportLabelJumpTypeValues _3

3 lines spacing.


_4

public static final ReportLabelJumpTypeValues _4

4 lines spacing.


_5

public static final ReportLabelJumpTypeValues _5

5 lines spacing.


_6

public static final ReportLabelJumpTypeValues _6

6 lines spacing.


_7

public static final ReportLabelJumpTypeValues _7

7 lines spacing.


_8

public static final ReportLabelJumpTypeValues _8

8 lines spacing.


_9

public static final ReportLabelJumpTypeValues _9

2 lines spacing.


STAR

public static final ReportLabelJumpTypeValues STAR

A page break is generated on the line.

Method Detail

valueOf

public static ReportLabelJumpTypeValues valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

values

public static ReportLabelJumpTypeValues[] 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 (ReportLabelJumpTypeValues c : ReportLabelJumpTypeValues.values())
    System.out.println(c);

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