object PrimType
- Alphabetic
- By Inheritance
- PrimType
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class Bool(defaultValue: Option[Boolean]) extends PrimType[Boolean] with Product with Serializable
Type representing a boolean value.
Type representing a boolean value. True value can be passed as "true", "1", "y", "yes" or "on". False value can be passed as "false", "o", "n", "no" or "off".
- defaultValue
Default value used then param is not provided
- final case class Enumeration[A](cases: (String, A)*) extends PrimType[A] with Product with Serializable
Type representing a value selected from set of allowed values.
Type representing a value selected from set of allowed values.
- cases
lists of allowed parameter-value pairs
- final case class Path(pathType: PathType, shouldExist: Exists, fileSystem: FileSystem = FileSystem.live) extends PrimType[java.nio.file.Path] with Product with Serializable
Type representing file system path.
Type representing file system path.
- pathType
Type of expected path: Directory, File or Either if both are acceptable.
- shouldExist
Yes if path is expected to exists, No otherwise or Either is both are acceptable.
- fileSystem
Implementation of FileSystem trait.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object Bool extends Serializable
- case object Decimal extends PrimType[BigDecimal] with Product with Serializable
Type representing decimal value via BigDecimal.
- case object Instant extends PrimType[Instant] with Product with Serializable
Type representing parameter for instant in time in UTC format, such as 2007-12-03T10:15:30.00Z.
- case object Integer extends PrimType[BigInt] with Product with Serializable
Type representing integer value via BigInt.
- case object LocalDate extends PrimType[LocalDate] with Product with Serializable
Type representing parameter for a date in ISO_LOCAL_DATE format, such as 2007-12-03.
- case object LocalDateTime extends PrimType[LocalDateTime] with Product with Serializable
Type representing a date-time without a time-zone in the ISO-8601 format, such as 2007-12-03T10:15:30.
- case object LocalTime extends PrimType[LocalTime] with Product with Serializable
Type representing a time without a time-zone in the ISO-8601 format, such as 10:15:30.
- case object MonthDay extends PrimType[MonthDay] with Product with Serializable
Type representing a month-day in the ISO-8601 format such as 12-03.
- case object OffsetDateTime extends PrimType[OffsetDateTime] with Product with Serializable
Type representing a date-time with an offset from UTC/Greenwich in the ISO-8601 format, such as 2007-12-03T10:15:30+01:00.
- case object OffsetTime extends PrimType[OffsetTime] with Product with Serializable
Type representing a time with an offset from UTC/Greenwich in the ISO-8601 format, such as 10:15:30+01:00.
- case object Period extends PrimType[Period] with Product with Serializable
Type representing a date-based amount of time in the ISO-8601 format, such as 'P1Y2M3D'.
- case object Text extends PrimType[String] with Product with Serializable
Type representing any text.
- case object Year extends PrimType[Year] with Product with Serializable
Type representing a year in the ISO-8601 format, such as 2007.
- case object YearMonth extends PrimType[YearMonth] with Product with Serializable
Type representing a year-month in the ISO-8601 format, such as 2007-12..
- case object ZoneId extends PrimType[ZoneId] with Product with Serializable
Type representing a time-zone ID, such as Europe/Paris.
- case object ZoneOffset extends PrimType[ZoneOffset] with Product with Serializable
Type representing a time-zone offset from Greenwich/UTC, such as +02:00.
- case object ZonedDateTime extends PrimType[ZonedDateTime] with Product with Serializable
Type representing a date-time with a time-zone in the ISO-8601 format, such as 2007-12-03T10:15:30+01:00 Europe/Paris.