Enum UPDMProfile.InformationKindEnum

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UPDMProfile.InformationKindEnum>
    Enclosing class:
    UPDMProfile

    public static enum UPDMProfile.InformationKindEnum
    extends java.lang.Enum<UPDMProfile.InformationKindEnum>
    Enumeration of kinds of information, derived from MODAF and DoDAF, used to support the InformationKind tag of the Information stereotype.
    • Enum Constant Detail

      • INFORMATION

        public static final UPDMProfile.InformationKindEnum INFORMATION
        Information is the state of a something of interest that is materialized -- in any medium or form -- and communicated or received.
      • DOMAININFORMATION

        public static final UPDMProfile.InformationKindEnum DOMAININFORMATION
        Types of information within the scope or domain of the architecture.
      • POSITIONREFERENCEFRAME

        public static final UPDMProfile.InformationKindEnum POSITIONREFERENCEFRAME
        An arbitrary set of axes with reference to which the position or motion of something is described or physical laws are formulated.
      • DATA

        public static final UPDMProfile.InformationKindEnum DATA
        Representation of information in a formalized manner suitable for communication, interpretation, or processing by humans or by automatic means. Examples could be whole models, packages, entities, attributes, classes, domain values, enumeration values, records, tables, rows, columns, and fields.
    • Method Detail

      • values

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

        public static UPDMProfile.InformationKindEnum 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
      • getText

        public java.lang.String getText()