Enum UAF.InformationKindEnum

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

    public static enum UAF.InformationKindEnum
    extends java.lang.Enum<UAF.InformationKindEnum>
    Enumeration of the possible kinds of Information.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      DATA
      Indicates that the Information associated with the InformationKind describes the representation of information in a formalized manner suitable for communication, interpretation, or processing by humans or by automatic means.
      DOMAININFORMATION
      Indicates that the Information associated with the InformationKind describes information within the scope or domain of the architecture.
      INFORMATION
      Indicates that the Information associated with the InformationKind describes the state of a something of interest that is materialized -- in any medium or form -- and communicated or received.
      PEDIGREEINFORMATION
      Indicates that the Information associated with the InformationKind describes information pedigree.
      POSITIONREFERENCEFRAME
      Indicates that the Information associated with the InformationKind describes an arbitrary set of axes with reference to which the position or motion of something is described or physical laws are formulated.
    • Enum Constant Detail

      • INFORMATION

        public static final UAF.InformationKindEnum INFORMATION
        Indicates that the Information associated with the InformationKind describes the state of a something of interest that is materialized -- in any medium or form -- and communicated or received.
      • DOMAININFORMATION

        public static final UAF.InformationKindEnum DOMAININFORMATION
        Indicates that the Information associated with the InformationKind describes information within the scope or domain of the architecture.
      • POSITIONREFERENCEFRAME

        public static final UAF.InformationKindEnum POSITIONREFERENCEFRAME
        Indicates that the Information associated with the InformationKind describes an arbitrary set of axes with reference to which the position or motion of something is described or physical laws are formulated.
      • PEDIGREEINFORMATION

        public static final UAF.InformationKindEnum PEDIGREEINFORMATION
        Indicates that the Information associated with the InformationKind describes information pedigree.
      • DATA

        public static final UAF.InformationKindEnum DATA
        Indicates that the Information associated with the InformationKind describes the 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 UAF.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 (UAF.InformationKindEnum c : UAF.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 UAF.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()