Uses of Class
software.amazon.jsii.NativeType
Packages that use NativeType
-
Uses of NativeType in software.amazon.jsii
Fields in software.amazon.jsii declared as NativeTypeModifier and TypeFieldDescriptionstatic final NativeType<Void>NativeType.VOIDANativeTyperepresentation for `void`.Methods in software.amazon.jsii that return NativeTypeModifier and TypeMethodDescriptionstatic <T> NativeType<T>static <T> NativeType<T>Creates aNativeTypefor the given Java type description.static <T> NativeType<List<T>>NativeType.listOf(NativeType<T> elementType) static <T> NativeType<Map<String,T>> NativeType.mapOf(NativeType<T> elementType) Methods in software.amazon.jsii with parameters of type NativeTypeModifier and TypeMethodDescriptionstatic <T> TKernel.asyncCall(Object receiver, String method, NativeType<T> nativeType, @Nullable Object... args) Calls an async method on the object.static <T> TKernel.call(Object receiver, String method, NativeType<T> nativeType, @Nullable Object... args) Calls a JavaScript method on a receiver.static <T> TKernel.get(Object receiver, String property, NativeType<T> type) Gets a property value from the object.protected final <T> TJsiiObject.jsiiAsyncCall(String method, NativeType<T> nativeType, @Nullable Object... args) Deprecated.protected final <T> TJsiiObject.jsiiCall(String method, NativeType<T> nativeType, @Nullable Object... args) Deprecated.protected final <T> TJsiiObject.jsiiGet(String property, NativeType<T> type) Deprecated.useKernel.get(Object, String, NativeType)insteadprotected static <T> TJsiiObject.jsiiStaticCall(Class<?> nativeClass, String method, NativeType<T> nativeType, @Nullable Object... args) Calls a static method.protected static <T> TJsiiObject.jsiiStaticGet(Class<?> nativeClass, String property, NativeType<T> type) Returns the value of a static property.static <T> NativeType<List<T>>NativeType.listOf(NativeType<T> elementType) static <T> NativeType<Map<String,T>> NativeType.mapOf(NativeType<T> elementType) static <T> TJsiiObjectMapper.treeToValue(com.fasterxml.jackson.databind.JsonNode tree, NativeType<T> valueType) Similar to calling JsiiObjectMapper.INSTANCE.treeToValue, but handles a null JsonNode argument well, and throws JsiiError instead of JsonProcessingException.
Kernel.asyncCall(Object, String, NativeType, Object...)instead