Packages

abstract class BaseEndpoints[F[_], T <: Base] extends AnyRef

Source
Identity.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BaseEndpoints
  2. AnyRef
  3. Any
Implicitly
  1. by StringFormat
  2. by Ensuring
  3. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BaseEndpoints(basePath: String, baseUri: Uri, name: String)(implicit arg0: Concurrent[F], arg1: Client[F], arg2: Decoder[T], token: Raw)

Abstract Value Members

  1. abstract def create(name: String): F[T]
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ->[B](y: B): (BaseEndpoints[F, T], B)
    Implicit
    This member is added by an implicit conversion from BaseEndpoints[F, T] toArrowAssoc[BaseEndpoints[F, T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def apply(name: String): F[T]

    Gets the with the given name, assuming it exists.

  6. def applyById(id: String): F[T]

    Gets the with the given id, assuming it exists.

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. def delete(name: String): F[Unit]

    Deletes the with name and all its associated aliases.

  10. def deleteById(id: String): F[Unit]

    Deletes the with id and all its associated aliases.

  11. def ensuring(cond: (BaseEndpoints[F, T]) => Boolean, msg: => Any): BaseEndpoints[F, T]
    Implicit
    This member is added by an implicit conversion from BaseEndpoints[F, T] toEnsuring[BaseEndpoints[F, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (BaseEndpoints[F, T]) => Boolean): BaseEndpoints[F, T]
    Implicit
    This member is added by an implicit conversion from BaseEndpoints[F, T] toEnsuring[BaseEndpoints[F, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): BaseEndpoints[F, T]
    Implicit
    This member is added by an implicit conversion from BaseEndpoints[F, T] toEnsuring[BaseEndpoints[F, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): BaseEndpoints[F, T]
    Implicit
    This member is added by an implicit conversion from BaseEndpoints[F, T] toEnsuring[BaseEndpoints[F, T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def findOrCreate(name: String): F[T]

    Gets the named name, creating one if one does not exist.

  19. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BaseEndpoints[F, T] toStringFormat[BaseEndpoints[F, T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. def get(name: String): F[Option[T]]

    Gets the with the given name.

  21. def getById(id: String): F[Option[T]]

    Gets the with the given id.

  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. val list: F[List[String]]

    Lists by their names.

  26. val listById: F[List[String]]

    Lists by their identifiers.

  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. val path: String
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. val uri: Uri
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def [B](y: B): (BaseEndpoints[F, T], B)
    Implicit
    This member is added by an implicit conversion from BaseEndpoints[F, T] toArrowAssoc[BaseEndpoints[F, T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion StringFormat fromBaseEndpoints[F, T] to StringFormat[BaseEndpoints[F, T]]

Inherited by implicit conversion Ensuring fromBaseEndpoints[F, T] to Ensuring[BaseEndpoints[F, T]]

Inherited by implicit conversion ArrowAssoc fromBaseEndpoints[F, T] to ArrowAssoc[BaseEndpoints[F, T]]

Ungrouped