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() @IntrinsicCandidate()
  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 float(name: String): Option[Float]
  21. def floatOr(name: String, defaultValue: Float): Float
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  23. def int(name: String): Option[Int]
  24. def intOr(name: String, defaultValue: Int): Int
  25. def isDefined(name: String): Boolean
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. 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

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

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

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ShowArgs

Inherited from AnyRef

Inherited from Any

Ungrouped