Class Argument


  • public class Argument
    extends java.lang.Object
    Author:
    Simon Thoresen Hult
    • Constructor Summary

      Constructors 
      Constructor Description
      Argument​(java.lang.String name, java.lang.String value)
      Constructs a new argument.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the name of this argument.
      java.lang.String getValue()
      Returns the value of this argument.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Argument

        public Argument​(java.lang.String name,
                        java.lang.String value)
        Constructs a new argument.
        Parameters:
        name - The name of this argument.
        value - The value of this argument.
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns the name of this argument.
        Returns:
        The name.
      • getValue

        public java.lang.String getValue()
        Returns the value of this argument.
        Returns:
        The value.