Enum UAF.InformationModelKindEnum

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONCEPTUAL
      Indicates that the InformationModel associated with the InformationModelKind is a conceptual InformationModel that defines the required high-level data concepts and their relationships.
      LOGICAL
      Indicates that the InformationModel associated with the InformationModelKind is a logical data model that allows analysis of an architecture s data definition aspect, without consideration of implementation specific or product specific issues.
      PHYSICAL
      Indicates that the InformationModel associated with the InformationModelKind is a physical data model that is an implementable specification of a data structure.
    • Enum Constant Detail

      • CONCEPTUAL

        public static final UAF.InformationModelKindEnum CONCEPTUAL
        Indicates that the InformationModel associated with the InformationModelKind is a conceptual InformationModel that defines the required high-level data concepts and their relationships.
      • LOGICAL

        public static final UAF.InformationModelKindEnum LOGICAL
        Indicates that the InformationModel associated with the InformationModelKind is a logical data model that allows analysis of an architecture s data definition aspect, without consideration of implementation specific or product specific issues. It details the conceptual data model.
      • PHYSICAL

        public static final UAF.InformationModelKindEnum PHYSICAL
        Indicates that the InformationModel associated with the InformationModelKind is a physical data model that is an implementable specification of a data structure. A physical data model realizes a logical data model, taking into account implementation restrictions and performance issues while still enforcing the constraints, relationships and typing of the logical data model.
    • Method Detail

      • values

        public static UAF.InformationModelKindEnum[] 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.InformationModelKindEnum c : UAF.InformationModelKindEnum.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.InformationModelKindEnum 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()