Enum CLArtifact.VAttr
- java.lang.Object
-
- java.lang.Enum<CLArtifact.VAttr>
-
- de.mid.innovator.srv2api.icw2class.CLArtifact.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<CLArtifact.VAttr>
- Enclosing interface:
- CLArtifact
public static enum CLArtifact.VAttr extends java.lang.Enum<CLArtifact.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 CLArtifact.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CLArtifact.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Artifact
public static final CLArtifact.VAttr Artifact
-
CheckInCount
public static final CLArtifact.VAttr CheckInCount
-
CheckInTime
public static final CLArtifact.VAttr CheckInTime
-
CheckInUser
public static final CLArtifact.VAttr CheckInUser
-
CheckedInFile
public static final CLArtifact.VAttr CheckedInFile
-
FileModificationTime
public static final CLArtifact.VAttr FileModificationTime
-
FileName
public static final CLArtifact.VAttr FileName
-
Manifestation
public static final CLArtifact.VAttr Manifestation
-
ModelSynchronizationTime
public static final CLArtifact.VAttr ModelSynchronizationTime
-
NestedArtifact
public static final CLArtifact.VAttr NestedArtifact
-
OwnedAndInheritedBehavioralFeature
public static final CLArtifact.VAttr OwnedAndInheritedBehavioralFeature
-
OwnedAndInheritedProperty
public static final CLArtifact.VAttr OwnedAndInheritedProperty
-
OwnedAttribute
public static final CLArtifact.VAttr OwnedAttribute
-
OwnedOperation
public static final CLArtifact.VAttr OwnedOperation
-
-
Method Detail
-
values
public static CLArtifact.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 (CLArtifact.VAttr c : CLArtifact.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 CLArtifact.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
-
-