Package de.mid.innovator.srv2api.icw2im
Enum IMProperty.VAttr
- java.lang.Object
-
- java.lang.Enum<IMProperty.VAttr>
-
- de.mid.innovator.srv2api.icw2im.IMProperty.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<IMProperty.VAttr>
- Enclosing interface:
- IMProperty
public static enum IMProperty.VAttr extends java.lang.Enum<IMProperty.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 IMProperty.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IMProperty.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ConcreteFirstMasterParameter
public static final IMProperty.VAttr ConcreteFirstMasterParameter
-
ConcreteSecondMasterParameter
public static final IMProperty.VAttr ConcreteSecondMasterParameter
-
DefaultSQL
public static final IMProperty.VAttr DefaultSQL
-
DefaultSetting
public static final IMProperty.VAttr DefaultSetting
-
DerivedDataTypeDefinition
public static final IMProperty.VAttr DerivedDataTypeDefinition
-
DerivedImplementation
public static final IMProperty.VAttr DerivedImplementation
-
DerivedSemanticDataType
public static final IMProperty.VAttr DerivedSemanticDataType
-
DerivedTypingTSOrDTType
public static final IMProperty.VAttr DerivedTypingTSOrDTType
-
FProperty
public static final IMProperty.VAttr FProperty
-
FirstValidTypeProperty
public static final IMProperty.VAttr FirstValidTypeProperty
-
HasOwnType
public static final IMProperty.VAttr HasOwnType
-
IsNotNull
public static final IMProperty.VAttr IsNotNull
-
OwnForeignTypeMark
public static final IMProperty.VAttr OwnForeignTypeMark
-
OwnedTypeDefinition
public static final IMProperty.VAttr OwnedTypeDefinition
-
OwningClassifier
public static final IMProperty.VAttr OwningClassifier
-
PFProperty
public static final IMProperty.VAttr PFProperty
-
PProperty
public static final IMProperty.VAttr PProperty
-
TypesSortedMasterAtTop
public static final IMProperty.VAttr TypesSortedMasterAtTop
-
TypingDataType
public static final IMProperty.VAttr TypingDataType
-
TypingDataTypeDefinition
public static final IMProperty.VAttr TypingDataTypeDefinition
-
TypingSemanticDataType
public static final IMProperty.VAttr TypingSemanticDataType
-
-
Method Detail
-
values
public static IMProperty.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 (IMProperty.VAttr c : IMProperty.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 IMProperty.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
-
-