de.mid.innovator.srv2api.icw2bp
Enum BPDataObject.VAttr
java.lang.Object
java.lang.Enum<BPDataObject.VAttr>
de.mid.innovator.srv2api.icw2bp.BPDataObject.VAttr
- All Implemented Interfaces:
- K_VATTR, Serializable, Comparable<BPDataObject.VAttr>
- Enclosing interface:
- BPDataObject
public static enum BPDataObject.VAttr
- extends Enum<BPDataObject.VAttr>
- implements K_VATTR
|
Method Summary |
int |
toInt()
Returns a specific integer value for the enumeration constant. |
static BPDataObject.VAttr |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BPDataObject.VAttr[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
BPDia
public static final BPDataObject.VAttr BPDia
DataInputOfCall
public static final BPDataObject.VAttr DataInputOfCall
DataInputOfCalledElement
public static final BPDataObject.VAttr DataInputOfCalledElement
DataObjectOfCall
public static final BPDataObject.VAttr DataObjectOfCall
DataObjectOfCalledElement
public static final BPDataObject.VAttr DataObjectOfCalledElement
DataObjectType
public static final BPDataObject.VAttr DataObjectType
DataOutputOfCall
public static final BPDataObject.VAttr DataOutputOfCall
DataOutputOfCalledElement
public static final BPDataObject.VAttr DataOutputOfCalledElement
DataStore
public static final BPDataObject.VAttr DataStore
InputOutputSpecifyAble
public static final BPDataObject.VAttr InputOutputSpecifyAble
InputSetR
public static final BPDataObject.VAttr InputSetR
InputSets
public static final BPDataObject.VAttr InputSets
IsCollection
public static final BPDataObject.VAttr IsCollection
IsDataObjectTypeDynamic
public static final BPDataObject.VAttr IsDataObjectTypeDynamic
ItemSubjectRefOfStore
public static final BPDataObject.VAttr ItemSubjectRefOfStore
OutputSetR
public static final BPDataObject.VAttr OutputSetR
OutputSets
public static final BPDataObject.VAttr OutputSets
OwningCatchEvent
public static final BPDataObject.VAttr OwningCatchEvent
OwningEvent
public static final BPDataObject.VAttr OwningEvent
OwningThrowEvent
public static final BPDataObject.VAttr OwningThrowEvent
ProcessContainer
public static final BPDataObject.VAttr ProcessContainer
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 BPDataObject.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 BPDataObject.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 (BPDataObject.VAttr c : BPDataObject.VAttr.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared