Package de.mid.innovator.srv2api.icw2dg
Enum DGViewChapter.VAttr
- java.lang.Object
-
- java.lang.Enum<DGViewChapter.VAttr>
-
- de.mid.innovator.srv2api.icw2dg.DGViewChapter.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<DGViewChapter.VAttr>
- Enclosing interface:
- DGViewChapter
public static enum DGViewChapter.VAttr extends java.lang.Enum<DGViewChapter.VAttr> implements K_VATTR
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
toInt()
Returns a specific integer value for the enumeration constant.static DGViewChapter.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DGViewChapter.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ElemHeadingNumberFormat
public static final DGViewChapter.VAttr ElemHeadingNumberFormat
-
ElementsHeading
public static final DGViewChapter.VAttr ElementsHeading
-
IsExpanded
public static final DGViewChapter.VAttr IsExpanded
-
IsTable
public static final DGViewChapter.VAttr IsTable
-
KeepIfEmpty
public static final DGViewChapter.VAttr KeepIfEmpty
-
OwnedTypeFilterEnum
public static final DGViewChapter.VAttr OwnedTypeFilterEnum
-
PageBreakAfterElemHeading
public static final DGViewChapter.VAttr PageBreakAfterElemHeading
-
PageBreakBeforeElemHeading
public static final DGViewChapter.VAttr PageBreakBeforeElemHeading
-
ProfileOfOwningTreeStructureRoot
public static final DGViewChapter.VAttr ProfileOfOwningTreeStructureRoot
-
SuppressElemHeading
public static final DGViewChapter.VAttr SuppressElemHeading
-
TableColumns
public static final DGViewChapter.VAttr TableColumns
-
TableProperties
public static final DGViewChapter.VAttr TableProperties
-
TypeFilterEnum
public static final DGViewChapter.VAttr TypeFilterEnum
-
-
Method Detail
-
values
public static DGViewChapter.VAttr[] 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 (DGViewChapter.VAttr c : DGViewChapter.VAttr.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DGViewChapter.VAttr 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 namejava.lang.NullPointerException
- if the argument is null
-
-