c

pureconfig

ConfigListCursor

case class ConfigListCursor(listValue: ConfigList, pathElems: List[String], offset: Int = 0) extends ConfigCursor with Product with Serializable

A ConfigCursor pointing to a config list.

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

Instance Constructors

  1. new ConfigListCursor(listValue: ConfigList, pathElems: List[String], offset: Int = 0)

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. def asBoolean: Result[Boolean]

    Casts this cursor to a boolean.

    Casts this cursor to a boolean.

    returns

    a Right with the boolean value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  5. def asByte: Result[Byte]

    Casts this cursor to a byte.

    Casts this cursor to a byte.

    returns

    a Right with the byte value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  6. def asConfigValue: Result[ConfigList]

    Casts this cursor to a ConfigValue.

    Casts this cursor to a ConfigValue.

    returns

    a Right with the config value pointed to by this cursor if the value is defined, Left with a list of failures otherwise.

    Definition Classes
    ConfigListCursorConfigCursor
  7. def asDouble: Result[Double]

    Casts this cursor to a double.

    Casts this cursor to a double.

    returns

    a Right with the double value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  8. def asFloat: Result[Float]

    Casts this cursor to a float.

    Casts this cursor to a float.

    returns

    a Right with the float value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def asInt: Result[Int]

    Casts this cursor to an int.

    Casts this cursor to an int.

    returns

    a Right with the int value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  11. def asList: Result[List[ConfigCursor]]

    Casts this cursor to a list of cursors.

    Casts this cursor to a list of cursors.

    returns

    a Right with the list pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  12. def asListCursor: Result[ConfigListCursor]

    Casts this cursor to a ConfigListCursor.

    Casts this cursor to a ConfigListCursor.

    returns

    a Right with this cursor as a list cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigListCursorConfigCursor
  13. def asLong: Result[Long]

    Casts this cursor to a long.

    Casts this cursor to a long.

    returns

    a Right with the long value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  14. def asMap: Result[Map[String, ConfigCursor]]

    Casts this cursor to a map from config keys to cursors.

    Casts this cursor to a map from config keys to cursors.

    returns

    a Right with the map pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  15. def asObjectCursor: Result[ConfigObjectCursor]

    Casts this cursor to a ConfigObjectCursor.

    Casts this cursor to a ConfigObjectCursor.

    returns

    a Right with this cursor as an object cursor if it points to an object, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  16. def asShort: Result[Short]

    Casts this cursor to a short.

    Casts this cursor to a short.

    returns

    a Right with the short value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  17. def asString: Result[String]

    Casts this cursor to a string.

    Casts this cursor to a string.

    returns

    a Right with the string value pointed to by this cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
  18. def atIndex(idx: Int): Result[ConfigCursor]

    Returns a cursor to the config at a given index.

    Returns a cursor to the config at a given index.

    idx

    the index of the config for which a cursor should be returned

    returns

    a Right with a cursor to the config at idx if such a config exists, a Left with a list of failures otherwise.

  19. def atIndexOrUndefined(idx: Int): ConfigCursor

    Returns a cursor to the config at a given index.

    Returns a cursor to the config at a given index. An out of range index will return a cursor to an undefined value.

    idx

    the index of the config for which a cursor should be returned

    returns

    a cursor to the config at idx if such a config exists, a cursor to an undefined value otherwise.

  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def failed[A](reason: FailureReason): Result[A]

    Returns a failed ConfigReader result resulting from scoping a FailureReason into the context of this cursor.

    Returns a failed ConfigReader result resulting from scoping a FailureReason into the context of this cursor.

    This operation is the easiest way to return a failure from a ConfigReader.

    A

    the returning type of the ConfigReader

    reason

    the reason of the failure

    returns

    a failed ConfigReader result built by scoping reason into the context of this cursor.

    Definition Classes
    ConfigCursor
  23. def failureFor(reason: FailureReason): ConfigReaderFailure

    Returns a ConfigReaderFailure resulting from scoping a FailureReason into the context of this cursor.

    Returns a ConfigReaderFailure resulting from scoping a FailureReason into the context of this cursor.

    This operation is useful for constructing ConfigReaderFailures when there are multiple FailureReasons.

    reason

    the reason of the failure

    returns

    a ConfigReaderFailure built by scoping reason into the context of this cursor.

    Definition Classes
    ConfigCursor
  24. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def fluent: FluentConfigCursor
    Definition Classes
    ConfigCursor
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. def isEmpty: Boolean

    Returns whether the config list pointed to by this cursor is empty.

  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def isNull: Boolean

    Returns whether this cursor points to a null config value.

    Returns whether this cursor points to a null config value. An explicit null value is different than a missing value - isUndefined can be used to check for the latter.

    returns

    true if this cursor points to a null value, false otherwise.

    Definition Classes
    ConfigCursor
  30. def isUndefined: Boolean

    Returns whether this cursor points to an undefined value.

    Returns whether this cursor points to an undefined value. A cursor can point to an undefined value when a missing config key is requested or when a null ConfigValue is provided, among other reasons.

    returns

    true if this cursor points to an undefined value, false otherwise.

    Definition Classes
    ConfigCursor
  31. def list: List[ConfigCursor]

    Returns a list of cursors to the elements of the config list pointed to by this cursor.

    Returns a list of cursors to the elements of the config list pointed to by this cursor.

    returns

    a list of cursors to the elements of the config list pointed to by this cursor.

  32. val listValue: ConfigList
  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. val offset: Int
  37. def origin: Option[ConfigOrigin]

    The file system location of the config to which this cursor points.

    The file system location of the config to which this cursor points.

    Definition Classes
    ConfigCursor
  38. def path: String

    The path in the config to which this cursor points.

    The path in the config to which this cursor points.

    Definition Classes
    ConfigCursor
  39. val pathElems: List[String]

    The path in the config to which this cursor points as a list of keys in reverse order (deepest key first).

    The path in the config to which this cursor points as a list of keys in reverse order (deepest key first).

    Definition Classes
    ConfigListCursorConfigCursor
  40. def scopeFailure[A](result: Either[FailureReason, A]): Result[A]

    Returns a failed ConfigReader result resulting from scoping a Either[FailureReason, A] into the context of this cursor.

    Returns a failed ConfigReader result resulting from scoping a Either[FailureReason, A] into the context of this cursor.

    This operation is needed when control of the reading process is passed to a place without a ConfigCursor instance providing the nexessary context (for example, when ConfigReader.fromString is used. In those scenarios, the call should be wrapped in this method in order to turn FailureReason instances into ConfigReaderFailures.

    A

    the returning type of the ConfigReader

    result

    the result of a config reading operation

    returns

    a ConfigReader result built by scoping reason into the context of this cursor.

    Definition Classes
    ConfigCursor
  41. def size: Int

    Returns the size of the config list pointed to by this cursor.

  42. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  43. def tailOption: Option[ConfigListCursor]

    Returns a cursor to the tail of the config list pointed to by this cursor if non-empty.

    Returns a cursor to the tail of the config list pointed to by this cursor if non-empty.

    returns

    a Some with the tail of the config list if the list is not empty, None otherwise.

  44. def valueOpt: Option[ConfigList]

    The optional ConfigValue which this cursor points to.

    The optional ConfigValue which this cursor points to.

    Definition Classes
    ConfigListCursorConfigCursor
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Deprecated Value Members

  1. def asCollectionCursor: Result[Either[ConfigListCursor, ConfigObjectCursor]]

    Casts this cursor as either a ConfigListCursor or a ConfigObjectCursor.

    Casts this cursor as either a ConfigListCursor or a ConfigObjectCursor.

    returns

    a Right with this cursor as a list or object cursor if the cast can be done, Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10.1) Use asListCursor and/or asObjectCursor instead

  2. final def atPath(pathSegments: PathSegment*): Result[ConfigCursor]

    Returns a cursor to the config at the path composed of given path segments.

    Returns a cursor to the config at the path composed of given path segments.

    pathSegments

    the path of the config for which a cursor should be returned

    returns

    a Right with a cursor to the config at pathSegments if such a config exists, a Left with a list of failures otherwise.

    Definition Classes
    ConfigCursor
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10.2) Use .fluent.at(pathSegments).cursor instead

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ConfigCursor

Inherited from AnyRef

Inherited from Any

Ungrouped