Uses of Interface
com.daml.ledger.javaapi.data.codegen.ValueDecoder
- 
Packages that use ValueDecoder Package Description com.daml.ledger.javaapi.data.codegen 
- 
- 
Uses of ValueDecoder in com.daml.ledger.javaapi.data.codegenFields in com.daml.ledger.javaapi.data.codegen declared as ValueDecoder Modifier and Type Field Description static ValueDecoder<java.lang.Boolean>PrimitiveValueDecoders. fromBoolstatic ValueDecoder<java.time.LocalDate>PrimitiveValueDecoders. fromDatestatic ValueDecoder<java.lang.Long>PrimitiveValueDecoders. fromInt64static ValueDecoder<java.math.BigDecimal>PrimitiveValueDecoders. fromNumericstatic ValueDecoder<java.lang.String>PrimitiveValueDecoders. fromPartystatic ValueDecoder<java.lang.String>PrimitiveValueDecoders. fromTextstatic ValueDecoder<java.time.Instant>PrimitiveValueDecoders. fromTimestampstatic ValueDecoder<Unit>PrimitiveValueDecoders. fromUnitValueDecoder<R>Update.ExerciseUpdate. returnTypeDecoderValueDecoder<View>InterfaceCompanion. valueDecoderMethods in com.daml.ledger.javaapi.data.codegen that return ValueDecoder Modifier and Type Method Description static <T> ValueDecoder<ContractId<T>>PrimitiveValueDecoders. fromContractId(ValueDecoder<T> contractType)static <A> ValueDecoder<A>ValueDecoder. fromFunction(java.util.function.Function<Value,A> fromValue)Deprecated.since Daml 2.5.0; it is only used in deprecated fromValue method of all generated data classstatic <K,V>
 ValueDecoder<java.util.Map<K,V>>PrimitiveValueDecoders. fromGenMap(ValueDecoder<K> keyType, ValueDecoder<V> valueType)Specifically for decoding theDA.Internal.LF.Mapprimitive type.static <T> ValueDecoder<java.util.List<T>>PrimitiveValueDecoders. fromList(ValueDecoder<T> element)static <T> ValueDecoder<java.util.Optional<T>>PrimitiveValueDecoders. fromOptional(ValueDecoder<T> element)static <T> ValueDecoder<java.util.Map<java.lang.String,T>>PrimitiveValueDecoders. fromTextMap(ValueDecoder<T> valueType)Specifically for decoding theDA.Internal.LF.TextMapprimitive type.static <T> ValueDecoder<T>PrimitiveValueDecoders. impossible()Can be passed to decoder-producing functions to decode phantom type parameters only.static <Data> ValueDecoder<Data>ContractCompanion. valueDecoder(ContractCompanion<?,? extends ContractId<Data>,Data> companion)Static method to generate an implementation ofValueDecoderof typeDatawith metadata from the providedContractCompanion.Methods in com.daml.ledger.javaapi.data.codegen with parameters of type ValueDecoder Modifier and Type Method Description static <T> ValueDecoder<ContractId<T>>PrimitiveValueDecoders. fromContractId(ValueDecoder<T> contractType)static <K,V>
 ValueDecoder<java.util.Map<K,V>>PrimitiveValueDecoders. fromGenMap(ValueDecoder<K> keyType, ValueDecoder<V> valueType)Specifically for decoding theDA.Internal.LF.Mapprimitive type.static <T> ValueDecoder<java.util.List<T>>PrimitiveValueDecoders. fromList(ValueDecoder<T> element)static <T> ValueDecoder<java.util.Optional<T>>PrimitiveValueDecoders. fromOptional(ValueDecoder<T> element)static <T> ValueDecoder<java.util.Map<java.lang.String,T>>PrimitiveValueDecoders. fromTextMap(ValueDecoder<T> valueType)Specifically for decoding theDA.Internal.LF.TextMapprimitive type.Constructors in com.daml.ledger.javaapi.data.codegen with parameters of type ValueDecoder Constructor Description InterfaceCompanion(java.lang.String templateClassName, Identifier templateId, java.util.function.Function<java.lang.String,Id> newContractId, ValueDecoder<View> valueDecoder, InterfaceCompanion.FromJson<View> fromJson, java.util.List<Choice<I,?,?>> choices)
 
-