Module swim.args
Package swim.args

Class Arg

    • Constructor Detail

      • Arg

        public Arg​(String name,
                   String value,
                   boolean optional)
    • Method Detail

      • value

        public String value()
      • optional

        public boolean optional()
      • optional

        public Arg optional​(boolean optional)
      • canEqual

        public boolean canEqual​(Object other)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • debug

        public <T> Output<T> debug​(Output<T> output)
        Description copied from interface: Debug
        Writes a developer readable, debug-formatted string representation of this object to output.
        Specified by:
        debug in interface Debug
        Returns:
        the continuation of the output.
      • create

        public static Arg create​(String name,
                                 String value,
                                 boolean optional)
      • create

        public static Arg create​(String name)