de.mid.innovator.srv2api.icw2pres
Enum PRPresContext.VAttr

java.lang.Object
  extended by java.lang.Enum<PRPresContext.VAttr>
      extended by de.mid.innovator.srv2api.icw2pres.PRPresContext.VAttr
All Implemented Interfaces:
K_VATTR, Serializable, Comparable<PRPresContext.VAttr>
Enclosing interface:
PRPresContext

public static enum PRPresContext.VAttr
extends Enum<PRPresContext.VAttr>
implements K_VATTR


Enum Constant Summary
ContextValue
           
Format
           
Graphic
           
HorPage
           
IsPageViewActive
           
MarginBottom
           
MarginLeft
           
MarginRight
           
MarginTop
           
MarginUnit
           
Orientation
           
OwnedFooterText
           
OwnedHeaderText
           
OwnedPresContent
           
PageBreakX
           
PageBreakY
           
PageOrder
           
VerPage
           
XOrigin
           
YOrigin
           
Zoom
           
 
Method Summary
 int toInt()
          Returns a specific integer value for the enumeration constant.
static PRPresContext.VAttr valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface de.mid.innovator.srv2api.icw2elem.K_VATTR
name, toString
 

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

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

toInt

public int toInt()
Returns a specific integer value for the enumeration constant. This method is needed to serialize enumeration constants.

Specified by:
toInt in interface K_VATTR
Returns:
the specified value of the enumeration constant

valueOf

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

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