case class CommandLine(_arguments: Seq[String] = Seq()) extends ShowArgs with Product with Serializable

Command-line arguments

Linear Supertypes
Serializable, Serializable, Product, Equals, ShowArgs, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CommandLine
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ShowArgs
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CommandLine(_arguments: Seq[String] = Seq())

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val _arguments: Seq[String]
  5. def arguments: Seq[String]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def bool(name: String): Option[Boolean]
  8. def boolOr(name: String, defaultValue: Boolean): Boolean
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. def contains(a: String): Boolean
  11. def directory(name: String): Option[DirectoryPath]
  12. def directoryOr(name: String, defaultValue: DirectoryPath): DirectoryPath
  13. def double(name: String): Option[Double]
  14. def doubleOr(name: String, defaultValue: Double): Double
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def file(name: String): Option[FilePath]
  17. def fileOr(name: String, defaultValue: FilePath): FilePath
  18. def filter(included: String*): CommandLine
  19. def filterNot(excluded: String*): CommandLine
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def float(name: String): Option[Float]
  22. def floatOr(name: String, defaultValue: Float): Float
  23. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def int(name: String): Option[Int]
  25. def intOr(name: String, defaultValue: Int): Int
  26. def isDefined(name: String): Boolean
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def isSet(name: String): Boolean

    returns

    true if a specific string is present in the list of arguments from the command line or if an attribute with that name (and any value) has been defined

  29. def long(name: String): Option[Long]
  30. def longOr(name: String, defaultValue: Long): Long
  31. def map(name: String): Option[Map[String, String]]
  32. def mapOr(name: String, defaultValue: Map[String, String]): Map[String, String]
  33. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def overrideWith(other: CommandLine): CommandLine
  37. def showArg(a: (String, Option[_])): Option[String]
    Definition Classes
    ShowArgs
  38. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String
    Definition Classes
    CommandLine → AnyRef → Any
  40. def value(name: String): Option[String]

    returns

    the value for a given attribute attribute names and values are defined in a positional way where an attribute name is always succeeded with an attribute value. For example: name1 value1 name2 value2 values can also be retrieved from system properties set with the regular jvm syntax -Dname=value

  41. def valueOr(name: String, defaultValue: String): String
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ShowArgs

Inherited from AnyRef

Inherited from Any

Ungrouped