Package de.mid.innovator.srv2api.icw2gc
Enum GCConcept.VAttr
- java.lang.Object
-
- java.lang.Enum<GCConcept.VAttr>
-
- de.mid.innovator.srv2api.icw2gc.GCConcept.VAttr
-
- All Implemented Interfaces:
K_VATTR
,java.io.Serializable
,java.lang.Comparable<GCConcept.VAttr>
- Enclosing interface:
- GCConcept
public static enum GCConcept.VAttr extends java.lang.Enum<GCConcept.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 GCConcept.VAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GCConcept.VAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ConceptType
public static final GCConcept.VAttr ConceptType
-
ContainerConceptsByPresentation
public static final GCConcept.VAttr ContainerConceptsByPresentation
-
DiagramOfRealizingElement
public static final GCConcept.VAttr DiagramOfRealizingElement
-
DirectlyConnectedPredecessors
public static final GCConcept.VAttr DirectlyConnectedPredecessors
-
DirectlyConnectedSuccessors
public static final GCConcept.VAttr DirectlyConnectedSuccessors
-
GCDia
public static final GCConcept.VAttr GCDia
-
IncomingConceptRealization
public static final GCConcept.VAttr IncomingConceptRealization
-
IncomingConnection
public static final GCConcept.VAttr IncomingConnection
-
IsShapedConcept
public static final GCConcept.VAttr IsShapedConcept
-
NestedConcept
public static final GCConcept.VAttr NestedConcept
-
NestedConceptsByDiagram
public static final GCConcept.VAttr NestedConceptsByDiagram
-
NestedConceptsByPresentation
public static final GCConcept.VAttr NestedConceptsByPresentation
-
NodeShape
public static final GCConcept.VAttr NodeShape
-
OutgoingConnection
public static final GCConcept.VAttr OutgoingConnection
-
OwnedConcept
public static final GCConcept.VAttr OwnedConcept
-
OwningConcept
public static final GCConcept.VAttr OwningConcept
-
RealizingElement
public static final GCConcept.VAttr RealizingElement
-
TextPositionSpecification
public static final GCConcept.VAttr TextPositionSpecification
-
-
Method Detail
-
values
public static GCConcept.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 (GCConcept.VAttr c : GCConcept.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 GCConcept.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
-
-