Packages

p

io.idml

datanodes

package datanodes

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. trait CompositeValue extends IdmlValue

    Indicates we should not track sub-paths of this value

  2. case class IArray(items: Buffer[IdmlValue]) extends IdmlValue with IdmlArray with Product with Serializable

    The standard implementation of an array.

    The standard implementation of an array. Encapsulates a mutable array buffer

  3. case class IBool(value: Boolean) extends IdmlValue with IdmlBool with Product with Serializable

    The default IdmlValue implementation of a boolean

  4. case class IDate(dateVal: DateTime, format: DateTimeFormatter = DateModule.DefaultDateFormat) extends IdmlValue with IdmlString with CompositeValue with Product with Serializable

  5. case class IDomElement(name: String, attrs: Map[String, String], children: List[IDomNode]) extends IdmlObject with IdmlArray with IDomNode with Product with Serializable
  6. sealed trait IDomNode extends IdmlValue with CompositeValue
  7. case class IDomText(value: String) extends IdmlValue with IdmlString with IDomNode with Product with Serializable
  8. case class IDouble(value: Double) extends IdmlValue with IdmlDouble with Product with Serializable

    The default IdmlValue implementation of a floating point number

  9. class IEmail extends IdmlValue with IdmlString with CompositeValue

    Represents a valid Email

  10. case class IInt(value: Long) extends IdmlValue with IdmlInt with Product with Serializable

    The default IdmlValue implementation of an integer

  11. case class IObject(fields: Map[String, IdmlValue]) extends IdmlObject with Product with Serializable

    The default IdmlValue implementation for an object

  12. case class IString(value: String) extends IdmlValue with IdmlString with Product with Serializable

    The standard implementation of a string

  13. class IUrl extends IdmlValue with IdmlString with CompositeValue

    Represents a valid URL

Value Members

  1. object IArray extends Serializable
  2. object IDateFormats

    Date formats

  3. object IFalse extends IBool

    The PBool for false

  4. object IObject extends Serializable

    The empty PObject

  5. object ITrue extends IBool

    The PBool for true

Ungrouped