abstract class SimpleAuthEnum[T, Repr] extends AnyRef

Dead simple typed enum with explicitly handled enumeration error It also provides an implicit decoder/encoder for serialization into json.

T

the abstract type to enumerate, subclass style

Repr

the representation type (i.e., string, int, double, ...)

Source
SimpleAuthEnum.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleAuthEnum
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SimpleAuthEnum()(implicit arg0: Decoder[Repr], arg1: Encoder[Repr], arg2: ClassTag[Repr], arg3: Eq[Repr])

Abstract Value Members

  1. abstract def getRepr(t: T): Repr
  2. abstract val values: AuthGroup[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. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. implicit val authEnum: SimpleAuthEnum[T, Repr]
  6. lazy val cachedDecodingFailure: DecodingFailure
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. def contains(elem: T): Boolean
    Annotations
    @inline()
  9. implicit lazy val decoder: Decoder[T]
  10. implicit lazy val encoder: Encoder[T]
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def fromRepr(r: Repr): Either[InvalidAuthorization, T]
  15. def fromReprF[F[_]](r: Repr)(implicit F: MonadError[F, Throwable]): F[T]
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def ixFromRepr(r: Repr): Int
    Annotations
    @inline()
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toList: List[T]
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. def unsafeFromRepr(r: Repr): T
  27. def viewAll(implicit classTag: ClassTag[T]): AuthGroup[T]
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped