Enum PRPresContent.VAttr
- java.lang.Object
-
- java.lang.Enum<PRPresContent.VAttr>
-
- de.mid.innovator.srv2api.icw2pres.PRPresContent.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<PRPresContent.VAttr>
- Enclosing interface:
- PRPresContent
public static enum PRPresContent.VAttr extends java.lang.Enum<PRPresContent.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DisplayName
Incoming
IsPositioned
MEModelElement
Outgoing
OwnedPresContent
OwningPresContent
OwningPresContext
OwningPresElement
PresContentAnnotations
PresentationLevel
TextHeight
TextWidth
TextXPosition
TextYPosition
-
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 PRPresContent.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PRPresContent.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DisplayName
public static final PRPresContent.VAttr DisplayName
-
Incoming
public static final PRPresContent.VAttr Incoming
-
IsPositioned
public static final PRPresContent.VAttr IsPositioned
-
MEModelElement
public static final PRPresContent.VAttr MEModelElement
-
Outgoing
public static final PRPresContent.VAttr Outgoing
-
OwnedPresContent
public static final PRPresContent.VAttr OwnedPresContent
-
OwningPresContent
public static final PRPresContent.VAttr OwningPresContent
-
OwningPresContext
public static final PRPresContent.VAttr OwningPresContext
-
OwningPresElement
public static final PRPresContent.VAttr OwningPresElement
-
PresContentAnnotations
public static final PRPresContent.VAttr PresContentAnnotations
-
PresentationLevel
public static final PRPresContent.VAttr PresentationLevel
-
TextHeight
public static final PRPresContent.VAttr TextHeight
-
TextWidth
public static final PRPresContent.VAttr TextWidth
-
TextXPosition
public static final PRPresContent.VAttr TextXPosition
-
TextYPosition
public static final PRPresContent.VAttr TextYPosition
-
-
Method Detail
-
values
public static PRPresContent.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 (PRPresContent.VAttr c : PRPresContent.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 PRPresContent.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
-
-