de.mid.innovator.srv2api.icw2model
Enum MERequirement.VAttr
java.lang.Object
java.lang.Enum<MERequirement.VAttr>
de.mid.innovator.srv2api.icw2model.MERequirement.VAttr
- All Implemented Interfaces:
- K_VATTR, Serializable, Comparable<MERequirement.VAttr>
- Enclosing interface:
- MERequirement
public static enum MERequirement.VAttr
- extends Enum<MERequirement.VAttr>
- implements K_VATTR
|
Method Summary |
int |
toInt()
Returns a specific integer value for the enumeration constant. |
static MERequirement.VAttr |
valueOf(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. |
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
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 MERequirement.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 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