Enum PRPresContext.VAttr
- java.lang.Object
-
- java.lang.Enum<PRPresContext.VAttr>
-
- de.mid.innovator.srv2api.icw2pres.PRPresContext.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<PRPresContext.VAttr>
- Enclosing interface:
- PRPresContext
public static enum PRPresContext.VAttr extends java.lang.Enum<PRPresContext.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ContextValue
Format
Graphic
HorPage
IsPageViewActive
MarginBottom
MarginLeft
MarginRight
MarginTop
MarginUnit
MD5OfGraphic
Orientation
OwnedFooterText
OwnedHeaderText
OwnedPresContent
PageBreakX
PageBreakY
PageOrder
VerPage
XOrigin
YOrigin
Zoom
-
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 PRPresContext.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PRPresContext.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ContextValue
public static final PRPresContext.VAttr ContextValue
-
Format
public static final PRPresContext.VAttr Format
-
Graphic
public static final PRPresContext.VAttr Graphic
-
HorPage
public static final PRPresContext.VAttr HorPage
-
IsPageViewActive
public static final PRPresContext.VAttr IsPageViewActive
-
MD5OfGraphic
public static final PRPresContext.VAttr MD5OfGraphic
-
MarginBottom
public static final PRPresContext.VAttr MarginBottom
-
MarginLeft
public static final PRPresContext.VAttr MarginLeft
-
MarginRight
public static final PRPresContext.VAttr MarginRight
-
MarginTop
public static final PRPresContext.VAttr MarginTop
-
MarginUnit
public static final PRPresContext.VAttr MarginUnit
-
Orientation
public static final PRPresContext.VAttr Orientation
-
OwnedFooterText
public static final PRPresContext.VAttr OwnedFooterText
-
OwnedHeaderText
public static final PRPresContext.VAttr OwnedHeaderText
-
OwnedPresContent
public static final PRPresContext.VAttr OwnedPresContent
-
PageBreakX
public static final PRPresContext.VAttr PageBreakX
-
PageBreakY
public static final PRPresContext.VAttr PageBreakY
-
PageOrder
public static final PRPresContext.VAttr PageOrder
-
VerPage
public static final PRPresContext.VAttr VerPage
-
XOrigin
public static final PRPresContext.VAttr XOrigin
-
YOrigin
public static final PRPresContext.VAttr YOrigin
-
Zoom
public static final PRPresContext.VAttr Zoom
-
-
Method Detail
-
values
public static PRPresContext.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 (PRPresContext.VAttr c : PRPresContext.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 PRPresContext.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
-
-