Enum K_COMPARTMENT
- java.lang.Object
-
- java.lang.Enum<K_COMPARTMENT>
-
- de.mid.innovator.srv2api.icw2elem.K_COMPARTMENT
-
- All Implemented Interfaces:
IntEnum
,java.io.Serializable
,java.lang.Comparable<K_COMPARTMENT>
public enum K_COMPARTMENT extends java.lang.Enum<K_COMPARTMENT> implements IntEnum
-
-
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.java.lang.String
toString()
Returns a display string for the enumeration value.static K_COMPARTMENT
valueOf(int value)
Returns the enumeration constant of this type with the specified value.static K_COMPARTMENT
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static K_COMPARTMENT[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Node
public static final K_COMPARTMENT Node
-
M2Attribute
public static final K_COMPARTMENT M2Attribute
-
TaggedValue
public static final K_COMPARTMENT TaggedValue
-
TemplateParameter
public static final K_COMPARTMENT TemplateParameter
-
EnumMember
public static final K_COMPARTMENT EnumMember
-
Parameter
public static final K_COMPARTMENT Parameter
-
Attribute
public static final K_COMPARTMENT Attribute
-
Port
public static final K_COMPARTMENT Port
-
Operation
public static final K_COMPARTMENT Operation
-
Reception
public static final K_COMPARTMENT Reception
-
ExtensionPoint
public static final K_COMPARTMENT ExtensionPoint
-
Slot
public static final K_COMPARTMENT Slot
-
ProvidedInterface
public static final K_COMPARTMENT ProvidedInterface
-
RequiredInterface
public static final K_COMPARTMENT RequiredInterface
-
Realization
public static final K_COMPARTMENT Realization
-
Artifact
public static final K_COMPARTMENT Artifact
-
PointOfContact
public static final K_COMPARTMENT PointOfContact
-
Stakeholders
public static final K_COMPARTMENT Stakeholders
-
Content
public static final K_COMPARTMENT Content
-
IMPrimaryKey
public static final K_COMPARTMENT IMPrimaryKey
-
ERAttribute
public static final K_COMPARTMENT ERAttribute
-
ERViewAttribute
public static final K_COMPARTMENT ERViewAttribute
-
ERViewFrom
public static final K_COMPARTMENT ERViewFrom
-
ERUniqueKey
public static final K_COMPARTMENT ERUniqueKey
-
ERForeignKey
public static final K_COMPARTMENT ERForeignKey
-
ERConstraint
public static final K_COMPARTMENT ERConstraint
-
DBTableColumn
public static final K_COMPARTMENT DBTableColumn
-
DBViewColumn
public static final K_COMPARTMENT DBViewColumn
-
DBViewFrom
public static final K_COMPARTMENT DBViewFrom
-
DBUniqueKey
public static final K_COMPARTMENT DBUniqueKey
-
DBForeignKey
public static final K_COMPARTMENT DBForeignKey
-
DBIndex
public static final K_COMPARTMENT DBIndex
-
DBConstraint
public static final K_COMPARTMENT DBConstraint
-
DBTrigger
public static final K_COMPARTMENT DBTrigger
-
BPField
public static final K_COMPARTMENT BPField
-
BPEventDefinition
public static final K_COMPARTMENT BPEventDefinition
-
BPError
public static final K_COMPARTMENT BPError
-
BPOperation
public static final K_COMPARTMENT BPOperation
-
BI2CubeDimension
public static final K_COMPARTMENT BI2CubeDimension
-
BI2DimensionLevel
public static final K_COMPARTMENT BI2DimensionLevel
-
BI2Hierarchy
public static final K_COMPARTMENT BI2Hierarchy
-
BI2DimensionIdAttribute
public static final K_COMPARTMENT BI2DimensionIdAttribute
-
BI2DimensionShowAttribute
public static final K_COMPARTMENT BI2DimensionShowAttribute
-
BI2DimensionSortAttribute
public static final K_COMPARTMENT BI2DimensionSortAttribute
-
BI2HierarchyLevel
public static final K_COMPARTMENT BI2HierarchyLevel
-
ERDimensionAttribute
public static final K_COMPARTMENT ERDimensionAttribute
-
UsedSQLObject
public static final K_COMPARTMENT UsedSQLObject
-
UsingSQLObject
public static final K_COMPARTMENT UsingSQLObject
-
ERViewSubselectFrom
public static final K_COMPARTMENT ERViewSubselectFrom
-
ERView
public static final K_COMPARTMENT ERView
-
DBViewSubselectFrom
public static final K_COMPARTMENT DBViewSubselectFrom
-
DBView
public static final K_COMPARTMENT DBView
-
DROutputDecision
public static final K_COMPARTMENT DROutputDecision
-
DREncapsulatedDecision
public static final K_COMPARTMENT DREncapsulatedDecision
-
DRInputData
public static final K_COMPARTMENT DRInputData
-
DRInputDecision
public static final K_COMPARTMENT DRInputDecision
-
-
Method Detail
-
values
public static K_COMPARTMENT[] 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 (K_COMPARTMENT c : K_COMPARTMENT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static K_COMPARTMENT 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
-
valueOf
public static K_COMPARTMENT valueOf(int value)
Returns the enumeration constant of this type with the specified value.- Parameters:
value
- the value of the enumeration constant to be returned. This method is needed to serialize enumeration constants.- Returns:
- the enumeration constant with the specified value or null
-
toInt
public int toInt()
Returns a specific integer value for the enumeration constant. This method is needed to serialize enumeration constants.
-
toString
public java.lang.String toString()
Returns a display string for the enumeration value.- Specified by:
toString
in interfaceIntEnum
- Overrides:
toString
in classjava.lang.Enum<K_COMPARTMENT>
- Returns:
- a String representation of the enumeration value
-
-