Enum SysMLProfile.FlowDirectionKindEnum

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

    public static enum SysMLProfile.FlowDirectionKindEnum
    extends java.lang.Enum<SysMLProfile.FlowDirectionKindEnum>
    FlowDirection is an enumeration type that defines literals used for specifying input and output directions. FlowDirection is used by flow properties to indicate if a property is an input or an output with respect to its owner.
    • Field Detail

      • text

        private final java.lang.String text
    • Constructor Detail

      • FlowDirectionKindEnum

        private FlowDirectionKindEnum​(java.lang.String text)
    • Method Detail

      • values

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

        public static SysMLProfile.FlowDirectionKindEnum 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()