Enum EAXMIVersion

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EAXMIVersion>

    public enum EAXMIVersion
    extends java.lang.Enum<EAXMIVersion>
    A representation of the literals of the enumeration 'EAXMIVersion', and utility methods for working with them.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      EA21
      UML 2.1 (XMI 2.1)
      EA211
      UML 2.1.1 (XMI 2.1)
      EA212
      UML 2.1.2 (XMI 2.1)
      EA22
      UML 2.2 (XMI 2.1)
      EA23
      UML 2.3 (XMI 2.1)
      EA24
      UML 2.4 (XMI 2.4)
      EA241
      UML 2.4.1 (XMI 2.4.2)
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      com.sodius.mdw.internal.metamodel.uml21.io.ea.api.EnumXMIType getType()  
      static EAXMIVersion valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static EAXMIVersion[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • EA21

        public static final EAXMIVersion EA21
        UML 2.1 (XMI 2.1)
      • EA211

        public static final EAXMIVersion EA211
        UML 2.1.1 (XMI 2.1)
      • EA212

        public static final EAXMIVersion EA212
        UML 2.1.2 (XMI 2.1)
      • EA22

        public static final EAXMIVersion EA22
        UML 2.2 (XMI 2.1)
      • EA23

        public static final EAXMIVersion EA23
        UML 2.3 (XMI 2.1)
      • EA24

        public static final EAXMIVersion EA24
        UML 2.4 (XMI 2.4)
      • EA241

        public static final EAXMIVersion EA241
        UML 2.4.1 (XMI 2.4.2)
    • Method Detail

      • values

        public static EAXMIVersion[] 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 (EAXMIVersion c : EAXMIVersion.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EAXMIVersion 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 name
        java.lang.NullPointerException - if the argument is null
      • getType

        public com.sodius.mdw.internal.metamodel.uml21.io.ea.api.EnumXMIType getType()