Enum CLProperty.VAttr
- java.lang.Object
-
- java.lang.Enum<CLProperty.VAttr>
-
- de.mid.innovator.srv2api.icw2class.CLProperty.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<CLProperty.VAttr>
- Enclosing interface:
- CLProperty
public static enum CLProperty.VAttr extends java.lang.Enum<CLProperty.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 CLProperty.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CLProperty.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AcceptingPin
public static final CLProperty.VAttr AcceptingPin
-
Artifact
public static final CLProperty.VAttr Artifact
-
AssocEndPin
public static final CLProperty.VAttr AssocEndPin
-
AssociationEnd
public static final CLProperty.VAttr AssociationEnd
-
Class
public static final CLProperty.VAttr Class
-
DataType
public static final CLProperty.VAttr DataType
-
Interface
public static final CLProperty.VAttr Interface
-
LinkAction
public static final CLProperty.VAttr LinkAction
-
LinkEndData
public static final CLProperty.VAttr LinkEndData
-
Operation
public static final CLProperty.VAttr Operation
-
OppositeAssociationEnd
public static final CLProperty.VAttr OppositeAssociationEnd
-
OwningAssociation
public static final CLProperty.VAttr OwningAssociation
-
OwningCreateCLInst
public static final CLProperty.VAttr OwningCreateCLInst
-
OwningSignal
public static final CLProperty.VAttr OwningSignal
-
OwningStructuredClassifier
public static final CLProperty.VAttr OwningStructuredClassifier
-
PortOfPart
public static final CLProperty.VAttr PortOfPart
-
PropertyAssociation
public static final CLProperty.VAttr PropertyAssociation
-
PropertySlot
public static final CLProperty.VAttr PropertySlot
-
Qualifier
public static final CLProperty.VAttr Qualifier
-
QualifierValue
public static final CLProperty.VAttr QualifierValue
-
RedefinedProperty
public static final CLProperty.VAttr RedefinedProperty
-
SendingPin
public static final CLProperty.VAttr SendingPin
-
TypingClassifier
public static final CLProperty.VAttr TypingClassifier
-
TypingEncapsulatedClassifier
public static final CLProperty.VAttr TypingEncapsulatedClassifier
-
TypingTemplateParameterAbleClass
public static final CLProperty.VAttr TypingTemplateParameterAbleClass
-
-
Method Detail
-
values
public static CLProperty.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 (CLProperty.VAttr c : CLProperty.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 CLProperty.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
-
-