public enum TextLineTypeValues extends java.lang.Enum<TextLineTypeValues>
List of Text line types.
Enum Constant and Description |
---|
_1 |
_2 |
_3 |
_4 |
_5 |
_6 |
_7 |
_8 |
_9 |
_B |
_D |
_E |
_F |
_I |
_J |
_K |
_L |
_Y |
EQUAL |
MINUS |
NONE |
PLUS |
STAR |
UNDER |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final TextLineTypeValues _1
Skip 1 line
public static final TextLineTypeValues _2
Skip 2 lines
public static final TextLineTypeValues _3
Skip 3 lines
public static final TextLineTypeValues _4
Skip 4 lines
public static final TextLineTypeValues _5
Skip 5 lines
public static final TextLineTypeValues _6
Skip 6 lines
public static final TextLineTypeValues _7
Skip 7 lines
public static final TextLineTypeValues _8
Skip 8 lines
public static final TextLineTypeValues _9
Skip 9 lines
public static final TextLineTypeValues _B
Same as type 'I' plus possibility to enter codes of User Entity instances longer than 6 characters.
public static final TextLineTypeValues _D
Detail line allowing Activity Calculation
public static final TextLineTypeValues _E
Same as type 'J' plus possibility to enter codes of User Entity instances longer than 6 characters.
public static final TextLineTypeValues _F
Headingl line allowing Activity Calculation
public static final TextLineTypeValues _I
This code is used to assign text lines to instances displayed in this section line.
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.
public static final TextLineTypeValues _K
'K' Section title.It will appear in a Volume.
public static final TextLineTypeValues _L
Section title. Default value when creating a new section. It will not appear in a Volume.
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.
public static final TextLineTypeValues EQUAL
Same as type 'K' but the title will be underlined with the '=' character.
public static final TextLineTypeValues MINUS
Same as type 'K' but the title will be underlined with the '-' (dash) character.
public static final TextLineTypeValues NONE
Default value.
public static final TextLineTypeValues PLUS
'+' Same as type 'K' but the title will be underlined with the '+' character.
public static final TextLineTypeValues STAR
Skip one page
public static final TextLineTypeValues UNDER
Same as type 'K' but the title will be underlined with the '_' (underscore) character.
public static TextLineTypeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static TextLineTypeValues[] values()
for (TextLineTypeValues c : TextLineTypeValues.values()) System.out.println(c);