Enum UAF.ServiceExchangeKindEnum

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONFIGURATIONEXCHANGE
      Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where CapabilityConfigurations flow from one OperationalPerformer to another.
      ENERGYEXCHANGE
      Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where energy is flowed from one OperationalPerformer to another.
      INFORMATIONEXCHANGE
      Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where information is flowed from one OperationalPerformer to another.
      MATERIELEXCHANGE
      Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow of materiel (artifacts) between Functions.
      ORGANIZATIONALEXCHANGE
      Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where human resources (PostTypes, RoleTypes) flow between OperationalPerformers.
    • Enum Constant Detail

      • MATERIELEXCHANGE

        public static final UAF.ServiceExchangeKindEnum MATERIELEXCHANGE
        Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow of materiel (artifacts) between Functions.
      • ORGANIZATIONALEXCHANGE

        public static final UAF.ServiceExchangeKindEnum ORGANIZATIONALEXCHANGE
        Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where human resources (PostTypes, RoleTypes) flow between OperationalPerformers.
      • ENERGYEXCHANGE

        public static final UAF.ServiceExchangeKindEnum ENERGYEXCHANGE
        Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where energy is flowed from one OperationalPerformer to another.
      • INFORMATIONEXCHANGE

        public static final UAF.ServiceExchangeKindEnum INFORMATIONEXCHANGE
        Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where information is flowed from one OperationalPerformer to another.
      • CONFIGURATIONEXCHANGE

        public static final UAF.ServiceExchangeKindEnum CONFIGURATIONEXCHANGE
        Indicates that the OperationalExchange associated with the OperationalExchangeKind is a logical flow where CapabilityConfigurations flow from one OperationalPerformer to another.
    • Method Detail

      • values

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