Uses of Annotation Interface
software.amazon.jsii.Internal
Packages that use Internal
Package
Description
jsii Runtime for Java.
jsii-runtime API.
-
Uses of Internal in software.amazon.jsii
Classes in software.amazon.jsii with annotations of type InternalModifier and TypeClassDescriptionfinal classHTTP client for jsii-server.final classThe javascript engine which supports jsii objects.classRepresents a jsii JavaScript module.final classProvides a correctly configured JSON processor for handling JSII requests and responses.final classRepresents a remote jsii object reference.final classManages the jsii-runtime child process.interfaceMarks a class as serializable from native to javascript.final classA static helper to interact with the kernel in a "simple" way.classNativeType<T>Methods in software.amazon.jsii with annotations of type InternalModifier and TypeMethodDescriptiondefault com.fasterxml.jackson.core.TreeNodeJsiiSerializable.$jsii$toJson()Serializes this object to JSON.static <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, Class<T> returnType, @Nullable Object... args) Deprecated.protected final <T> TJsiiObject.jsiiAsyncCall(String method, NativeType<T> nativeType, @Nullable Object... args) Deprecated.protected final <T> TDeprecated.protected final <T> TJsiiObject.jsiiCall(String method, NativeType<T> nativeType, @Nullable Object... args) Deprecated.protected final <T> TDeprecated.useKernel.get(Object, String, NativeType)insteadprotected final <T> TJsiiObject.jsiiGet(String property, NativeType<T> type) Deprecated.useKernel.get(Object, String, NativeType)insteadprotected final voidDeprecated.UseKernel.set(Object, String, Object)insteadprotected static <T> TJsiiObject.jsiiStaticCall(Class<?> nativeClass, String method, Class<T> returnType, @Nullable Object... args) Deprecated.protected 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, Class<T> type) Deprecated.protected static <T> TJsiiObject.jsiiStaticGet(Class<?> nativeClass, String property, NativeType<T> type) Returns the value of a static property.protected static voidJsiiObject.jsiiStaticSet(Class<?> nativeClass, String property, @Nullable Object value) Sets a value for a static property.protected static voidJsiiObject.jsiiStaticSet(JsiiEngine engine, Class<?> nativeClass, String property, @Nullable Object value) Sets a value for a static property.static voidSets a property value of an object.Constructors in software.amazon.jsii with annotations of type InternalModifierConstructorDescriptionprotectedJsiiObject(JsiiObjectRef objRef) Used to construct a JSII object with a reference to an existing managed JSII node object. -
Uses of Internal in software.amazon.jsii.api
Classes in software.amazon.jsii.api with annotations of type InternalModifier and TypeClassDescriptionclassThe "callback" struct.classRepresents a "create" jsii-runtime request.classRepresents a "get property" jsii-runtime request.classRepresents a method invocation jsii-runtime request.classRepresents an override.classRepresents a "set property" jsii-runtime request.
Kernel.asyncCall(Object, String, NativeType, Object...)instead