Class

zio.config.PropertyTree

Sequence

Related Doc: package PropertyTree

Permalink

final case class Sequence[K, V](value: List[PropertyTree[K, V]]) extends PropertyTree[K, V] with Product with Serializable

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

Instance Constructors

  1. new Sequence(value: List[PropertyTree[K, V]])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. final def at[K1 >: K](propertyTreePath: PropertyTreePath[K1]): PropertyTree[K1, V]

    Permalink

    at allows us to fetch a sub-tree from property-tree

    at allows us to fetch a sub-tree from property-tree

    Example:

    Given a config:
    
      {
       x : [ a, b, c ]
      }
    
      at("x")            // returns Some([a, b, c])
      at("x").atIndex(2) // returns Some(Leaf("c"))
      at("x").atKey("y") // returns None
    
    Similarly, given a more complex config:
      {
       x : [
         {
           y1: 1
           y2: 2
           y3: 3
         }
         {
           y1: 1
           y2: 2
           y3: 3
         }
       ]
      }
    
      at("x").atIndex(0).atKey("y1") // returns Some(Leaf(v1)
    Definition Classes
    PropertyTree
  6. final def atIndex[K1 >: K](index: Int): Option[PropertyTree[K1, V]]

    Permalink
    Definition Classes
    PropertyTree
  7. final def atKey[K1 >: K](key: K1): Option[PropertyTree[K1, V]]

    Permalink
    Definition Classes
    PropertyTree
  8. def bimap[K2, V2](f: (K) ⇒ K2, g: (V) ⇒ V2): PropertyTree[K2, V2]

    Permalink
    Definition Classes
    PropertyTree
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flatMap[K1 >: K, V1](f: (V) ⇒ PropertyTree[K1, V1]): PropertyTree[K1, V1]

    Permalink
    Definition Classes
    PropertyTree
  13. final def flatten[K1 >: K, V1 >: V]: Map[Vector[K1], ::[V1]]

    Permalink
    Definition Classes
    PropertyTree
  14. final def flattenKeyAndValue[K1 >: K, V1 >: V](pathDelimiter: String = ".", valueDelimiter: String = ":")(implicit KS: =:=[K1, String]): Map[String, String]

    Permalink
    Definition Classes
    PropertyTree
  15. final def flattenKeyWith[K1 >: K, V1 >: V](f: (K1) ⇒ String)(appendPath: String): Map[String, ::[V1]]

    Permalink
    Definition Classes
    PropertyTree
  16. final def flattenString[K1 >: K, V1 >: V](pathDelimiter: String = ".")(implicit KS: =:=[K1, String]): Map[String, ::[V1]]

    Permalink
    Definition Classes
    PropertyTree
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def getOrElse[K1 >: K, V1 >: V](tree: ⇒ PropertyTree[K1, V1]): PropertyTree[K1, V1]

    Permalink
    Definition Classes
    PropertyTree
  19. final def getPath[K1 >: K](k: List[K1]): PropertyTree[K1, V]

    Permalink
    Definition Classes
    PropertyTree
  20. final def isEmpty: Boolean

    Permalink
    Definition Classes
    PropertyTree
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def leafNotASequence: PropertyTree[K, V]

    Permalink
    Definition Classes
    PropertyTree
  23. final def map[V2](f: (V) ⇒ V2): PropertyTree[K, V2]

    Permalink
    Definition Classes
    PropertyTree
  24. final def mapEither[E, V2](f: (V) ⇒ Either[E, V2]): Either[E, PropertyTree[K, V2]]

    Permalink
    Definition Classes
    PropertyTree
  25. final def mapKey[K2](f: (K) ⇒ K2): PropertyTree[K2, V]

    Permalink
    Definition Classes
    PropertyTree
  26. final def merge[K1 >: K, V1 >: V](that: PropertyTree[K1, V1]): List[PropertyTree[K1, V1]]

    Permalink
    Definition Classes
    PropertyTree
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def nonEmpty: Boolean

    Permalink
    Definition Classes
    PropertyTree
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. val value: List[PropertyTree[K, V]]

    Permalink
  33. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def zip[K1 >: K, V1](that: PropertyTree[K1, V1]): PropertyTree[K1, (V, V1)]

    Permalink
    Definition Classes
    PropertyTree

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from PropertyTree[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped