Enum MEPackage.VAttr
- java.lang.Object
-
- java.lang.Enum<MEPackage.VAttr>
-
- de.mid.innovator.srv2api.icw2model.MEPackage.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<MEPackage.VAttr>
- Enclosing interface:
- MEPackage
public static enum MEPackage.VAttr extends java.lang.Enum<MEPackage.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLDia
IsProtected
NestedComponent
NestedPackage
NestedSubpackage
NestingPackage
OwnedBPDia
OwnedBRDiagram
OwnedDiagram
OwnedIMConstraint
OwnedRule
OwnedStateDiagram
PackagedElement
PackageImported
RedirectSource
RedirectTarget
-
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 MEPackage.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MEPackage.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLDia
public static final MEPackage.VAttr CLDia
-
IsProtected
public static final MEPackage.VAttr IsProtected
-
NestedComponent
public static final MEPackage.VAttr NestedComponent
-
NestedPackage
public static final MEPackage.VAttr NestedPackage
-
NestedSubpackage
public static final MEPackage.VAttr NestedSubpackage
-
NestingPackage
public static final MEPackage.VAttr NestingPackage
-
OwnedBPDia
public static final MEPackage.VAttr OwnedBPDia
-
OwnedBRDiagram
public static final MEPackage.VAttr OwnedBRDiagram
-
OwnedDiagram
public static final MEPackage.VAttr OwnedDiagram
-
OwnedIMConstraint
public static final MEPackage.VAttr OwnedIMConstraint
-
OwnedRule
public static final MEPackage.VAttr OwnedRule
-
OwnedStateDiagram
public static final MEPackage.VAttr OwnedStateDiagram
-
PackageImported
public static final MEPackage.VAttr PackageImported
-
PackagedElement
public static final MEPackage.VAttr PackagedElement
-
RedirectSource
public static final MEPackage.VAttr RedirectSource
-
RedirectTarget
public static final MEPackage.VAttr RedirectTarget
-
-
Method Detail
-
values
public static MEPackage.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 (MEPackage.VAttr c : MEPackage.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 MEPackage.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
-
-