com.ibm.pdp.maf.rpp.pac.text
Enum TextLineTypeValues

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

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

List of Text line types.


Enum Constant Summary
_1
          Skip 1 line
_2
          Skip 2 lines
_3
          Skip 3 lines
_4
          Skip 4 lines
_5
          Skip 5 lines
_6
          Skip 6 lines
_7
          Skip 7 lines
_8
          Skip 8 lines
_9
          Skip 9 lines
_B
          Same as type 'I' plus possibility to enter codes of User Entity instances longer than 6 characters.
_D
          Detail line allowing Activity Calculation
_E
          Same as type 'J' plus possibility to enter codes of User Entity instances longer than 6 characters.
_F
          Headingl line allowing Activity Calculation
_I
          This code is used to assign text lines to instances displayed in this section line.
_J
          Explicit end of assignment to a VA Pac entity, to User Entity instances with a code of less than six characters, or to instances of all other entity types.
_K
          'K' Section title.It will appear in a Volume.
_L
          Section title.
_Y
          This type of line allows you to make a reference to one Text instance and/or to one section.
EQUAL
          Same as type 'K' but the title will be underlined with the '=' character.
MINUS
          Same as type 'K' but the title will be underlined with the '-' (dash) character.
NONE
          Default value.
PLUS
          '+' Same as type 'K' but the title will be underlined with the '+' character.
STAR
          Skip one page
UNDER
          Same as type 'K' but the title will be underlined with the '_' (underscore) character.
 
Method Summary
static TextLineTypeValues valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TextLineTypeValues[] 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

_1

public static final TextLineTypeValues _1

Skip 1 line


_2

public static final TextLineTypeValues _2

Skip 2 lines


_3

public static final TextLineTypeValues _3

Skip 3 lines


_4

public static final TextLineTypeValues _4

Skip 4 lines


_5

public static final TextLineTypeValues _5

Skip 5 lines


_6

public static final TextLineTypeValues _6

Skip 6 lines


_7

public static final TextLineTypeValues _7

Skip 7 lines


_8

public static final TextLineTypeValues _8

Skip 8 lines


_9

public static final TextLineTypeValues _9

Skip 9 lines


_B

public static final TextLineTypeValues _B

Same as type 'I' plus possibility to enter codes of User Entity instances longer than 6 characters.


_D

public static final TextLineTypeValues _D

Detail line allowing Activity Calculation


_E

public static final TextLineTypeValues _E

Same as type 'J' plus possibility to enter codes of User Entity instances longer than 6 characters.


_F

public static final TextLineTypeValues _F

Headingl line allowing Activity Calculation


_I

public static final TextLineTypeValues _I

This code is used to assign text lines to instances displayed in this section line.


_J

public static final TextLineTypeValues _J

Explicit end of assignment to a VA Pac entity, to User Entity instances with a code of less than six characters, or to instances of all other entity types. If there is no data in the Text line field, text assignment terminates for all instances. You may selectively end the text assignment for given entity types/instance codes or for all instances of given entity types.


_K

public static final TextLineTypeValues _K

'K' Section title.It will appear in a Volume.


_L

public static final TextLineTypeValues _L

Section title. Default value when creating a new section. It will not appear in a Volume.


_Y

public static final TextLineTypeValues _Y

This type of line allows you to make a reference to one Text instance and/or to one section. It is possible to make a reference to a section of the current Text instance.


EQUAL

public static final TextLineTypeValues EQUAL

Same as type 'K' but the title will be underlined with the '=' character.


MINUS

public static final TextLineTypeValues MINUS

Same as type 'K' but the title will be underlined with the '-' (dash) character.


NONE

public static final TextLineTypeValues NONE

Default value.


PLUS

public static final TextLineTypeValues PLUS

'+' Same as type 'K' but the title will be underlined with the '+' character.


STAR

public static final TextLineTypeValues STAR

Skip one page


UNDER

public static final TextLineTypeValues UNDER

Same as type 'K' but the title will be underlined with the '_' (underscore) character.

Method Detail

valueOf

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

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