object
JParser
Type Members
-
-
type
Extract[A] = Validation[Error, A]
-
type
Result[A] = Validation[Throwable, A]
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
parseFromByteBuffer(buf: ByteBuffer): Result[JValue]
-
def
parseFromFile(file: File): Result[JValue]
-
def
parseFromString(str: String): Result[JValue]
-
def
parseManyFromByteBuffer(buf: ByteBuffer): Result[Seq[JValue]]
-
def
parseManyFromFile(file: File): Result[Seq[JValue]]
-
def
parseManyFromString(str: String): Result[Seq[JValue]]
-
def
parseUnsafe(str: String): JValue
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
validateFromByteBuffer[A](buf: ByteBuffer)(implicit arg0: Extractor[A]): Validation[Error, A]
-
def
validateFromFile[A](file: File)(implicit arg0: Extractor[A]): Validation[Error, A]
-
def
validateFromString[A](str: String)(implicit arg0: Extractor[A]): Validation[Error, A]
-
def
validateManyFromByteBuffer[A](buf: ByteBuffer)(implicit arg0: Extractor[A]): Validation[Error, Stream[A]]
-
def
validateManyFromFile[A](file: File)(implicit arg0: Extractor[A]): Validation[Error, Stream[A]]
-
def
validateManyFromString[A](str: String)(implicit arg0: Extractor[A]): Validation[Error, Stream[A]]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Deprecated Value Members
-
def
parse(str: String): JValue