Uses of Interface
com.daml.ledger.javaapi.data.codegen.json.JsonLfDecoder
-
Packages that use JsonLfDecoder Package Description com.daml.ledger.javaapi.data.codegen.json -
-
Uses of JsonLfDecoder in com.daml.ledger.javaapi.data.codegen.json
Fields in com.daml.ledger.javaapi.data.codegen.json declared as JsonLfDecoder Modifier and Type Field Description static JsonLfDecoder<java.lang.Boolean>JsonLfDecoders. boolstatic JsonLfDecoder<java.time.LocalDate>JsonLfDecoders. datestatic JsonLfDecoder<java.lang.Long>JsonLfDecoders. int64static JsonLfDecoder<java.lang.String>JsonLfDecoders. partystatic JsonLfDecoder<java.lang.String>JsonLfDecoders. textstatic JsonLfDecoder<java.time.Instant>JsonLfDecoders. timestampstatic JsonLfDecoder<Unit>JsonLfDecoders. unitMethods in com.daml.ledger.javaapi.data.codegen.json that return JsonLfDecoder Modifier and Type Method Description static <C extends ContractId<?>>
JsonLfDecoder<C>JsonLfDecoders. contractId(java.util.function.Function<java.lang.String,C> constr)static <E extends java.lang.Enum<E>>
JsonLfDecoder<E>JsonLfDecoders. enumeration(java.util.Map<java.lang.String,E> damlNameToEnum)static <K,V>
JsonLfDecoder<java.util.Map<K,V>>JsonLfDecoders. genMap(JsonLfDecoder<K> decodeKey, JsonLfDecoder<V> decodeVal)static <T> JsonLfDecoder<java.util.List<T>>JsonLfDecoders. list(JsonLfDecoder<T> decodeItem)static JsonLfDecoder<java.math.BigDecimal>JsonLfDecoders. numeric(int scale)static <T> JsonLfDecoder<java.util.Optional<T>>JsonLfDecoders. optional(JsonLfDecoder<T> decodeVal)static <T> JsonLfDecoder<java.util.Optional<java.util.Optional<T>>>JsonLfDecoders. optionalNested(JsonLfDecoder<java.util.Optional<T>> decodeVal)static <T> JsonLfDecoder<T>JsonLfDecoders. record(java.util.List<java.lang.String> argNames, java.util.function.Function<java.lang.String,JsonLfDecoders.JavaArg<? extends java.lang.Object>> argsByName, java.util.function.Function<java.lang.Object[],T> constr)static <V> JsonLfDecoder<java.util.Map<java.lang.String,V>>JsonLfDecoders. textMap(JsonLfDecoder<V> decodeValue)static <T> JsonLfDecoder<T>JsonLfDecoders. variant(java.util.List<java.lang.String> tagNames, java.util.function.Function<java.lang.String,JsonLfDecoder<? extends T>> decoderByName)Methods in com.daml.ledger.javaapi.data.codegen.json with parameters of type JsonLfDecoder Modifier and Type Method Description static <T> JsonLfDecoders.JavaArg<T>JsonLfDecoders.JavaArg. at(int index, JsonLfDecoder<T> decode)static <T> JsonLfDecoders.JavaArg<T>JsonLfDecoders.JavaArg. at(int index, JsonLfDecoder<T> decode, T defaultVal)<T> TJsonLfReader.UnknownValue. decodeWith(JsonLfDecoder<T> decoder)static <K,V>
JsonLfDecoder<java.util.Map<K,V>>JsonLfDecoders. genMap(JsonLfDecoder<K> decodeKey, JsonLfDecoder<V> decodeVal)static <T> JsonLfDecoder<java.util.List<T>>JsonLfDecoders. list(JsonLfDecoder<T> decodeItem)static <T> JsonLfDecoder<java.util.Optional<T>>JsonLfDecoders. optional(JsonLfDecoder<T> decodeVal)static <T> JsonLfDecoder<java.util.Optional<java.util.Optional<T>>>JsonLfDecoders. optionalNested(JsonLfDecoder<java.util.Optional<T>> decodeVal)static <V> JsonLfDecoder<java.util.Map<java.lang.String,V>>JsonLfDecoders. textMap(JsonLfDecoder<V> decodeValue)Method parameters in com.daml.ledger.javaapi.data.codegen.json with type arguments of type JsonLfDecoder Modifier and Type Method Description static <T> JsonLfDecoder<T>JsonLfDecoders. variant(java.util.List<java.lang.String> tagNames, java.util.function.Function<java.lang.String,JsonLfDecoder<? extends T>> decoderByName)
-