Module JNI.VISIBLE_FOR_TESTING_DO_NOT_USE_DIRECTLY

type t =
  1. | Boolean
  2. | Byte
  3. | Char
  4. | Short
  5. | Int
  6. | Long
  7. | Float
  8. | Double
  9. | Void
  10. | FullyQualifiedClass of string * string
  11. | Array of t
  12. | Method of t list * t
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t Base__Ppx_compare_lib.compare
val equal : t -> t -> bool
val parse_str : string -> t list
val parse_method_str : string -> t list * t
val pp : Stdlib.Format.formatter -> t -> unit