class KeyIndexDecoder[K] extends Decoder[KeyIndex[K]]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- KeyIndexDecoder
- Decoder
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new KeyIndexDecoder(entries: Seq[KeyIndexFormatEntry[K, _]])
Value Members
-
final
def
apply(c: HCursor): Result[KeyIndex[K]]
- Definition Classes
- KeyIndexDecoder → Decoder
-
final
def
at(field: String): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder
-
def
decodeAccumulating(c: HCursor): AccumulatingResult[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
decodeJson(j: Json): Result[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
either[B](decodeB: Decoder[B]): Decoder[Either[KeyIndex[K], B]]
- Definition Classes
- Decoder
-
final
def
emap[B](f: (KeyIndex[K]) ⇒ Either[String, B]): Decoder[B]
- Definition Classes
- Decoder
-
final
def
emapTry[B](f: (KeyIndex[K]) ⇒ Try[B]): Decoder[B]
- Definition Classes
- Decoder
-
final
def
ensure(errors: (KeyIndex[K]) ⇒ List[String]): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
ensure(pred: (KeyIndex[K]) ⇒ Boolean, message: ⇒ String): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
flatMap[B](f: (KeyIndex[K]) ⇒ Decoder[B]): Decoder[B]
- Definition Classes
- Decoder
-
final
def
handleErrorWith(f: (DecodingFailure) ⇒ Decoder[KeyIndex[K]]): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
kleisli: Kleisli[Result, HCursor, KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
map[B](f: (KeyIndex[K]) ⇒ B): Decoder[B]
- Definition Classes
- Decoder
-
final
def
or[AA >: KeyIndex[K]](d: ⇒ Decoder[AA]): Decoder[AA]
- Definition Classes
- Decoder
-
final
def
prepare(f: (ACursor) ⇒ ACursor): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
product[B](fb: Decoder[B]): Decoder[(KeyIndex[K], B)]
- Definition Classes
- Decoder
-
def
tryDecode(c: ACursor): Result[KeyIndex[K]]
- Definition Classes
- Decoder
-
def
tryDecodeAccumulating(c: ACursor): AccumulatingResult[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
validate(pred: (HCursor) ⇒ Boolean, message: ⇒ String): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
validate(errors: (HCursor) ⇒ List[String]): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder
-
final
def
withErrorMessage(message: String): Decoder[KeyIndex[K]]
- Definition Classes
- Decoder