Uses of Class
jsonvalues.JsBigDec

Packages that use JsBigDec
Package
Description
json-values is a one-package and zero-dependency library to work with jsons in a declarative and functional way.
 
  • Uses of JsBigDec in jsonvalues

    Methods in jsonvalues that return JsBigDec
    Modifier and Type
    Method
    Description
    Maps this JsBigDec into another one
    static JsBigDec
    JsBigDec.of(BigDecimal n)
    Static factory method to create a JsBigDec from a BigDecimal object.
    default JsBigDec
    JsValue.toJsBigDec()
    Returns this JsValue as a JsBigDec
    Methods in jsonvalues with parameters of type JsBigDec
    Modifier and Type
    Method
    Description
    int
    JsBigDec.compareTo(JsBigDec o)
    Compares two JsBigDec objects numerically
  • Uses of JsBigDec in jsonvalues.gen

    Methods in jsonvalues.gen that return types with arguments of type JsBigDec
    Modifier and Type
    Method
    Description
    JsBigDecGen.apply(Random seed)
    Returns a supplier from the specified seed that generates a new JsBigDec each time it's called
    static fun.gen.Gen<JsBigDec>
    JsBigDecGen.arbitrary()
    Returns a generator that produces values uniformly distributed
    static fun.gen.Gen<JsBigDec>
    JsBigDecGen.arbitrary(BigDecimal min, BigDecimal max)
    Returns a generator that produces values uniformly distributed over a specified interval
    static fun.gen.Gen<JsBigDec>
    JsBigDecGen.biased()
    returns a biased generators that produces, with higher probability, potential problematic values that usually cause more bugs.
    static fun.gen.Gen<JsBigDec>
    JsBigDecGen.biased(long min, long max)
    returns a biased generators that produces, with higher probability, potential problematic values that usually cause more bugs.
    static fun.gen.Gen<JsBigDec>
    JsBigDecGen.biased(BigDecimal min, BigDecimal max)
    returns a biased generators that produces, with higher probability, potential problematic values that usually cause more bugs.