Enum MERequirement.VAttr
- java.lang.Object
-
- java.lang.Enum<MERequirement.VAttr>
-
- de.mid.innovator.srv2api.icw2model.MERequirement.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<MERequirement.VAttr>
- Enclosing interface:
- MERequirement
public static enum MERequirement.VAttr extends java.lang.Enum<MERequirement.VAttr> implements K_VATTR
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLRequirementDia
Master
MasterCopy
MasterName
MasterText
NestedRequirement
OwningRequirement
PlainReqText
ReqId
ReqIndexHierarchy
ReqSource
ReqText
SlaveCopy
StakeholderOfRequirement
StakeholderOwnerOfRequirement
-
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 MERequirement.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MERequirement.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLRequirementDia
public static final MERequirement.VAttr CLRequirementDia
-
Master
public static final MERequirement.VAttr Master
-
MasterCopy
public static final MERequirement.VAttr MasterCopy
-
MasterName
public static final MERequirement.VAttr MasterName
-
MasterText
public static final MERequirement.VAttr MasterText
-
NestedRequirement
public static final MERequirement.VAttr NestedRequirement
-
OwningRequirement
public static final MERequirement.VAttr OwningRequirement
-
PlainReqText
public static final MERequirement.VAttr PlainReqText
-
ReqId
public static final MERequirement.VAttr ReqId
-
ReqIndexHierarchy
public static final MERequirement.VAttr ReqIndexHierarchy
-
ReqSource
public static final MERequirement.VAttr ReqSource
-
ReqText
public static final MERequirement.VAttr ReqText
-
SlaveCopy
public static final MERequirement.VAttr SlaveCopy
-
StakeholderOfRequirement
public static final MERequirement.VAttr StakeholderOfRequirement
-
StakeholderOwnerOfRequirement
public static final MERequirement.VAttr StakeholderOwnerOfRequirement
-
-
Method Detail
-
values
public static MERequirement.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 (MERequirement.VAttr c : MERequirement.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 MERequirement.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
-
-