Enum PRDiaEdge.VAttr
- java.lang.Object
-
- java.lang.Enum<PRDiaEdge.VAttr>
-
- de.mid.innovator.srv2api.icw2pres.PRDiaEdge.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<PRDiaEdge.VAttr>
- Enclosing interface:
- PRDiaEdge
public static enum PRDiaEdge.VAttr extends java.lang.Enum<PRDiaEdge.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 PRDiaEdge.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PRDiaEdge.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EdgeType
public static final PRDiaEdge.VAttr EdgeType
-
IsNotDefaultPositioned
public static final PRDiaEdge.VAttr IsNotDefaultPositioned
-
IsSourceTextNotDefaultPositioned
public static final PRDiaEdge.VAttr IsSourceTextNotDefaultPositioned
-
IsTargetTextNotDefaultPositioned
public static final PRDiaEdge.VAttr IsTargetTextNotDefaultPositioned
-
IsTextNotDefaultPositioned
public static final PRDiaEdge.VAttr IsTextNotDefaultPositioned
-
OwnedEdgePoint
public static final PRDiaEdge.VAttr OwnedEdgePoint
-
Source
public static final PRDiaEdge.VAttr Source
-
SourceEdgeSeg
public static final PRDiaEdge.VAttr SourceEdgeSeg
-
SourceTextHeight
public static final PRDiaEdge.VAttr SourceTextHeight
-
SourceTextPresentationLevel
public static final PRDiaEdge.VAttr SourceTextPresentationLevel
-
SourceTextWidth
public static final PRDiaEdge.VAttr SourceTextWidth
-
SourceTextXPosition
public static final PRDiaEdge.VAttr SourceTextXPosition
-
SourceTextYPosition
public static final PRDiaEdge.VAttr SourceTextYPosition
-
Target
public static final PRDiaEdge.VAttr Target
-
TargetEdgeSeg
public static final PRDiaEdge.VAttr TargetEdgeSeg
-
TargetTextHeight
public static final PRDiaEdge.VAttr TargetTextHeight
-
TargetTextPresentationLevel
public static final PRDiaEdge.VAttr TargetTextPresentationLevel
-
TargetTextWidth
public static final PRDiaEdge.VAttr TargetTextWidth
-
TargetTextXPosition
public static final PRDiaEdge.VAttr TargetTextXPosition
-
TargetTextYPosition
public static final PRDiaEdge.VAttr TargetTextYPosition
-
-
Method Detail
-
values
public static PRDiaEdge.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 (PRDiaEdge.VAttr c : PRDiaEdge.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 PRDiaEdge.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
-
-