Uses of Class
java.lang.Object
-
-
Uses of Object in java.io
Subclasses of Object in java.io Modifier and Type Class Description classInputStreamA readable source of bytes.classIOErrorThis error is thrown when a severe I/O error has happened.classIOExceptionSignals a general, I/O-related error.classOutputStreamA writable sink for bytes.classPrintStreamWraps an existingOutputStreamand provides convenience methods for writing common data types in a human readable format. -
Uses of Object in java.lang
Subclasses of Object in java.lang Modifier and Type Class Description classArithmeticExceptionThrown when the an invalid arithmetic operation is attempted.classArrayIndexOutOfBoundsExceptionThrown when the an array is indexed with a value less than zero, or greater than or equal to the size of the array.classArrayStoreExceptionThrown when a program attempts to store an element of an incompatible type in an array.classBooleanThe wrapper for the primitive typeboolean.classBStringThis is the base class for our optimized version of strings.classByteThe wrapper for the primitive typebyte.classCharacterThe wrapper for the primitive typechar.classClass<T>The in-memory representation of a Java class.classClassCastExceptionThrown when a program attempts to cast a an object to a type with which it is not compatible.classClassNotFoundExceptionThrown when an application tries to load in a class through its string name using: TheforNamemethod in classClass.classDoubleThe wrapper for the primitive typedouble.classEnum<E extends Enum<E>>The superclass of all enumerated types.classErrorErroris the superclass of all classes that represent unrecoverable errors.classExceptionExceptionis the superclass of all classes that represent recoverable exceptions.classFloatThe wrapper for the primitive typefloat.classIllegalArgumentExceptionThrown when a method is invoked with an argument which it can not reasonably deal with.classIncompatibleClassChangeErrorIncompatibleClassChangeErroris the superclass of all classes which represent errors that occur when inconsistent class files are loaded into the same running image.classIndexOutOfBoundsExceptionThrown when a program attempts to access a value in an indexable collection using a value which is outside of the range of valid indices.classIntegerThe wrapper for the primitive typeint.classLinkageErrorLinkageErroris the superclass of all error classes that occur when loading and linking class files.classLongThe wrapper for the primitive typelong.classMathClass Math provides basic math constants and operations such as trigonometric functions, hyperbolic functions, exponential, logarithms, etc.classNegativeArraySizeExceptionThrown when an attempt is made to create an array with a size of less than zero.classNoSuchFieldErrorThrown when the VM notices that a program tries to reference, on a class or object, a field that does not exist.classNoSuchFieldExceptionThrown when the VM notices that a program tries to reference, on a class or object, a field that does not exist.classNoSuchMethodErrorThrown when the VM notices that a program tries to reference, on a class or object, a method that does not exist.classNoSuchMethodExceptionThrown when the VM notices that a program tries to reference, on a class or object, a method that does not exist.classNullPointerExceptionThrown when a program tries to access a field or method of an object or an element of an array when there is no instance or array to use, that is if the object or array points tonull.classNumberclassNumberFormatExceptionThrown when an invalid value is passed to a string-to-number conversion method.classReflectiveOperationExceptionSuperclass of exceptions related to reflection.classRuntimeExceptionRuntimeExceptionis the superclass of all classes that represent exceptional conditions which occur as a result of executing an application in the VM.classShortThe wrapper for the primitive typeshort.classStringAn immutable sequence of characters/code units (chars).classSystemProvides access to system-related information and resources including standard input and output.classThrowableThe superclass of all classes which can be thrown by the VM.Methods in java.lang with parameters of type Object Modifier and Type Method Description static voidSystem. arraycopy(Object src, int srcPos, Object dest, int destPos, int length)copies length elements from the array source, beginning with the element at sourcePosition, to the array destination starting at destinationPosition.booleanBoolean. equals(Object o)Compares this instance with the specified object and indicates if they are equal.booleanByte. equals(Object object)Compares this object with the specified object and indicates if they are equal.booleanCharacter. equals(Object object)Compares this object with the specified object and indicates if they are equal.booleanDouble. equals(Object object)Tests this double for equality withobject.booleanEnum. equals(Object other)Compares this object with the specified object and indicates if they are equal.booleanFloat. equals(Object object)Tests this double for equality withobject.booleanInteger. equals(Object o)Compares this instance with the specified object and indicates if they are equal.booleanLong. equals(Object o)Compares this instance with the specified object and indicates if they are equal.booleanObject. equals(Object o)Compares this instance with the specified object and indicates if they are equal.booleanShort. equals(Object object)Compares this instance with the specified object and indicates if they are equal.booleanString. equals(Object anObject)Compares the specified object to this string and returns true if they are equal. -
Uses of Object in java.lang.annotation
Methods in java.lang.annotation with parameters of type Object Modifier and Type Method Description booleanAnnotation. equals(Object obj)Determines whether or not this annotation is equivalent to the annotation passed. -
Uses of Object in java.util
Subclasses of Object in java.util Modifier and Type Class Description classArrayList<E>classRandomThis class provides methods that return pseudo-random values.Methods in java.util that return Object Modifier and Type Method Description Object[]ArrayList. toArray()Returns an array containing all of the elements in this list in proper sequence (from first to last element).<T> T[]ArrayList. toArray(T[] arg0)Object[]Collection. toArray()Returns a new array containing all elements contained in thisCollection.<T> T[]Collection. toArray(T[] array)Returns an array containing all elements contained in thisCollection.Object[]List. toArray()Returns an array containing all elements contained in thisList.<T> T[]List. toArray(T[] array)Returns an array containing all elements contained in thisList.Methods in java.util with parameters of type Object Modifier and Type Method Description booleanArrayList. contains(Object o)Returnstrueif this list contains the specified element.booleanCollection. contains(Object object)Tests whether thisCollectioncontains the specified object.booleanList. contains(Object object)Tests whether thisListcontains the specified object.booleanCollection. equals(Object object)Compares the argument to the receiver, and returns true if they represent the same object using a class specific comparison.booleanList. equals(Object object)Compares the given object with theList, and returns true if they represent the same object using a class specific comparison.intArrayList. indexOf(Object o)Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element.intList. indexOf(Object object)Searches thisListfor the specified object and returns the index of the first occurrence.(package private) intArrayList. indexOfRange(Object o, int start, int end)intArrayList. lastIndexOf(Object o)Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element.intList. lastIndexOf(Object object)Searches thisListfor the specified object and returns the index of the last occurrence.(package private) intArrayList. lastIndexOfRange(Object o, int start, int end)booleanArrayList. remove(Object o)Removes the first occurrence of the specified element from this list, if it is present.booleanCollection. remove(Object object)Removes one instance of the specified object from thisCollectionif one is contained (optional).booleanList. remove(Object object)Removes the first occurrence of the specified object from thisList.<T> T[]ArrayList. toArray(T[] arg0)<T> T[]Collection. toArray(T[] array)Returns an array containing all elements contained in thisCollection.<T> T[]List. toArray(T[] array)Returns an array containing all elements contained in thisList. -
Uses of Object in org.deepjava.flink.core
Subclasses of Object in org.deepjava.flink.core Modifier and Type Class Description classFlinkDeviceA flink device is a hardware configuration in a FPGA device,classFlinkSubDeviceA flink subdevice realizes a special function in aFlinkDevice. -
Uses of Object in org.deepjava.flink.interfaces.mpc5200
Subclasses of Object in org.deepjava.flink.interfaces.mpc5200 Modifier and Type Class Description classlocalPlusBusInterfaceclassSPIBusInterface -
Uses of Object in org.deepjava.flink.interfaces.zynq
Subclasses of Object in org.deepjava.flink.interfaces.zynq Modifier and Type Class Description classAXIInterface -
Uses of Object in org.deepjava.flink.subdevices
Subclasses of Object in org.deepjava.flink.subdevices Modifier and Type Class Description classFlinkADCThe flink ADC subdevice realizes analog inputs in a flink device.classFlinkCounterThe flink counter subdevice realizes counter function within a flink device.classFlinkDACThe flink DAC subdevice realizes analog outputs in a flink device.classFlinkGPIOThe flink GPIO subdevice realizes digital input and output within a flink device.classFlinkInfoThe flink info subdevice is used the deliver a description string for a flink device together with the total amount of used memory.classFlinkPPWAThe flink PPWA subdevice realizes a PPWA function (pulse and period measurement) within a flink device.classFlinkPWMThe flink PWM subdevice realizes a PWM (pulse with modulation) function within a flink device.classFlinkUARTThe flink UART subdevice realizes an UART function within a flink device.classFlinkWatchdogThe flink watchdog subdevice realizes a watchdog function within a flink device. -
Uses of Object in org.deepjava.lowLevel
Subclasses of Object in org.deepjava.lowLevel Modifier and Type Class Description classLLThe methods of this class will be translated by inserting machine code instructions directly in the code without a method call. -
Uses of Object in org.deepjava.runtime
Subclasses of Object in org.deepjava.runtime Modifier and Type Class Description classKernelMock kernel. -
Uses of Object in org.deepjava.runtime.arm32
Subclasses of Object in org.deepjava.runtime.arm32 Modifier and Type Class Description classARMExceptionThe base class for all the ARM exceptions.classDataAbortThe class for the ARM data abort exception.classHeapHeap manager with mark-sweep garbage collection.
As soon as the remaining heap space is lower than a third of the total available heap space, a garbage collection is called.classPrefetchAbortThe class for the ARM prefetch abort exception.classSupervisorCallThe class for the ARM supervisor call.classTaskThis class implements a simple non-preemptive tasking system.classUndefinedInstructionThe class for the ARM undefined instruction exception. -
Uses of Object in org.deepjava.runtime.iMX6
Subclasses of Object in org.deepjava.runtime.iMX6 Modifier and Type Class Description classKernelThis is the kernel class.(package private) classResetThe class for the ARM reset exception. -
Uses of Object in org.deepjava.runtime.iMX6.driver
Subclasses of Object in org.deepjava.runtime.iMX6.driver Modifier and Type Class Description classUART3classUARTOutputStreamStream to write bytes to a UART interface. -
Uses of Object in org.deepjava.runtime.mpc5200
Subclasses of Object in org.deepjava.runtime.mpc5200 Modifier and Type Class Description classInterruptThe class for the PPC interrupt exception.
Every interrupt handler is an instance of the classInterrupt.classKernelThis is the kernel class.classPeripheralInterruptThe class for the mpc5200 peripheral interrupt exception.
Every peripheral interrupt handler is an instance of the classPeripheralInterrupt.(package private) classResetPCMioThe class for the PPC reset exception.
The stack pointer will be initialized and the program counter will be set to the beginning of the class initializer of the kernel.(package private) classResetPCMtinyThe class for the PPC reset exception.
The stack pointer will be initialized and the program counter will be set to the beginning of the class initializer of the kernel.(package private) classResetPCMuBootThe class for the PPC reset exception.
The stack pointer will be initialized and the program counter will be set to the beginning of the class initializer of the kernel. -
Uses of Object in org.deepjava.runtime.mpc5200.demo
Subclasses of Object in org.deepjava.runtime.mpc5200.demo Modifier and Type Class Description classCAN1TestTest class for the CAN1 module on the mpc5200.
Demonstrates the periodic sampling of a 3-dimensional force sensor.classDecrementerDemoSimple demo application showing how to use theDecrementer.
This application simply outputs the character 'x' over the UART3 for eachDecrementerexception.classEPOStest1Test class for an EPOS module (motor controller) connected to the CAN1 bus on the mpc5200.
A motor position is moved forward and backward.classExceptionDemoTest class which periodically throws aArrayIndexOutOfBoundsException.classSimpleBlinkerDemoSimple blinker application demo.classSPIDemoTest class demonstrating the use of aMAX5500DAC connected to a PSC on the mpc5200.
The PSC runs in SPI mode.classUART3DemoDemo for System.out using UART on PSC3.classUART3InOutReflectorDemo for InputStream and OutputStream using UART3.
Received characters will be sent back immediately.classUART6DemoDemo for System.out using UART on PSC6. -
Uses of Object in org.deepjava.runtime.mpc5200.driver
Subclasses of Object in org.deepjava.runtime.mpc5200.driver Modifier and Type Class Description classDAC_MAX5500Driver for aMAX5500DAC connected to a PSC6 on the mpc5200.classSPI_FQDclassUART3Driver for the UART of the Freescale MPC5200.classUART6Driver for the UART of the Freescale MPC5200.classUARTInputStreamInput Stream to read bytes from an UART interface.classUARTOutputStreamStream to write bytes to a UART interface. -
Uses of Object in org.deepjava.runtime.mpc5200.driver.can
Subclasses of Object in org.deepjava.runtime.mpc5200.driver.can Modifier and Type Class Description classCAN1classCAN2classCANopenclassEPOSclassNodeData -
Uses of Object in org.deepjava.runtime.mpc555
Subclasses of Object in org.deepjava.runtime.mpc555 Modifier and Type Class Description classDateTimeDate and time class.classInterruptThe class for the PPC interrupt exception.classKernelThis is the kernel class.classLoggerLogger utility to write log messages to aPrintStream.(package private) classResetThe class for the PPC reset exception.classTimerA class to measure a time span. -
Uses of Object in org.deepjava.runtime.mpc555.demo
Subclasses of Object in org.deepjava.runtime.mpc555.demo Modifier and Type Class Description classActionableTestThis test class demonstrates the use of theActionableinterface.classBlueRSCmdIntDemoSimple application for demonstrating the usage of the BlueRSCmdInt driver with a Stollmann BlueRS+I module.classBlueRSDemoDemo Application for the BlueRS driver.classDecrementerDemoSimple demo application how to use theDecrementer.classExtInterruptDemoDemonstrates the usage of some external interruptsclassHLC1395DemoDemo application for the HLC1395Plused driver.classMotorDemo1Demo application for motor controller.classRobi2LedBlinkerDemoWenn der Roboter autonom betrieben werden soll, d.h.classRobi2LineDemoDemo application for the NTB Robi2.classRobi2LineTaskDemo application for the NTB Robi2.classRobi2MotorDemoRobi2 Motor Demo.classRobi2ObstacleDemoDemo application for the NTB Robi2.classRobi2ObstacleTaskDemo application for the NTB Robi2.classRobi2SensorProximityDemoDas nachfolgende Programm wurde entwickelt um die auf dem Robotoer verwendeten Sensoren zu testen.classRobi2SensorProximityDemo_LedThis class is part of the Robi2SensorProximityDemo.classRobi2SensorProximityDemo_OutThis class is part of the Robi2SensorProximityDemo.classSimpleBlinkerDemoSimple blinker application demo.classSystemInOutReflectorDemo for InputStream and OutputStream using SCI2.
Received characters will be sent back immediately.classSystemOutDemo1Demo for System.out using SCI1.classSystemOutDemo2Demo for System.out using SCI2.(package private) classTestclassVL53L0XTestclassWifiDemo -
Uses of Object in org.deepjava.runtime.mpc555.driver
Subclasses of Object in org.deepjava.runtime.mpc555.driver Modifier and Type Class Description classBlueRSDriver for the Stollmann BlueRS+I Bluetooth Module.
The module supports one emulated serial connection using the Bluetooth Serial Port Profile (SPP).classBlueRSCmdIntInterface for the BlueRS driver to send and receive positive integer values.classDAC7614Driver for the digital analog converter DAC7614.classDS1302ZDriver for the DS1302Z real time clock.
Pin 13, 14 and 15 of the TPUB are used.
Before the first write disable the write protection withDS1302Z.setWriteProtection(boolean).classDS1620Driver for the temperature sensor DS1620 connected to pins of the MPIOSM.classHD44780UDriver for character display with 2 - 4 rows and 16 columns.
Display controller: HD44780U
Connected on the system bus of the mpc555.classHLC1395PulsedDriver for up to 16 pulsed and multiplexed HLC1393 reflection distance sensors.
The driver needs 5 digital outputs of the MPIOSM and a single analog input of QADC-A.classMAX512SPI Driver for the Maxim512 Digital to Analog Converter.
PCS0 on the SPI is used.classMDASM_DIODriver to use the MDASM sub module as digital I/O.classMMCSM_COUNTDriver to use the Mios Modulus Counter to count external events.classMPIOSM_DIODriver to use pins on the MPIOSM (MIOS 16-bit parallel port I/O submodule) as digital in- and outputs.classMPWMSM_DIODriver to use the MPWM sub module as digital I/O.classMPWMSM_PWMDriver for the MPWM module for generating PWM signalsclassQADC_AINThis driver configures one of the QADC modules (QADC-A or QADC-B) for analog input sampling operation.
Both modules comprise of 16 input channels each.classQADC_DIODriver to use the QADC-A or QADC-B as digital I/O.
Please prefer theMPIOSM_DIOdriver for I/O applications, because it's not possible to use the same channel on a QADC for ADC and I/0 at the same time.
The channels are grouped into two groups of 8 channels each, PortA and PortB.
PortB: PQB0(AN0), PQB1(AN1), PQB2(AN2), PQB3(AN3), PQB4(AN48), PQB5(AN49), PQB6(AN50), PQB7(AN51)
PortA: PQA0(AN52), PQA1(AN53), PQA2(AN54), PQA3(AN55), PQA4(AN56), PQA5(AN57), PQA6(AN58), PQA7(AN59)
IMPORTANT: The pins on PortB work solely as digital inputs.classQSMCMDefinitions for QSMCMclassQSMCM_DIODigital I/O on the PortQS.
Important: This drivers uses the same pins as the QSPI.
The following pins can be used.classQSPIclassRN131Driver for Roving RN-131C WiFly Module.classRobi2This driver is used for the Robi2.classRTBoardDriver for the mpc555 board for control applications.classSCIInterrupt controlled driver for the Serial Communication Interface 1 or the Serial Communication Interface 2 of the Freescale MPC555.classSCI18IS600classSCIInputStreamInput Stream to read bytes from a SCI interface.classSCIOutputStreamStream to write bytes to a SCI interface.classStepMotorStep motor driver on TPU-A or TPU-B.
Full step and half step modes are possible.
Full step requires 2 pins on the TPU.classTLC549Driver for a TLC549 8bit AD-converter connected to the QSPI.
Connect the converter as follows:
MPC555 => TLC549:
PCS0 => CS
MISO => DATA OUT
SCK => I/O CLOCK
Do not connect any other devices on the QSPI interface without adapting the settings of the control lines.classTPU_DIODriver to use a channel of the TPU (A or B) as a GPIO.
Each 16 channels of both time processing units can be used as general purpose in- or output.classTPU_FQDDecoding of quadrature coded signals (FQD - Fast Quadrature Decoding) with TPU-A or TPU-B.classTPU_PPWAPeriod and pulse width measurement (PPWA function) with the TPU-A or TPU-B.
All 16 channels of TPU-A or TPU-B can be used.classTPU_PWMDriver for generating pulse width modulated (PWM) signals on the TPU.
All 16 channels of TPU-A or TPU-B can be used.classTPUADriver for the TPU B.classTPUBDriver for the TPU B.classVL53L0X -
Uses of Object in org.deepjava.runtime.mpc555.driver.can
Subclasses of Object in org.deepjava.runtime.mpc555.driver.can Modifier and Type Class Description classCANAclassCANopenclassEPOS -
Uses of Object in org.deepjava.runtime.mpc555.driver.ffs
Subclasses of Object in org.deepjava.runtime.mpc555.driver.ffs Modifier and Type Class Description classAM29LV160Driver for AM29LV160 Flash, 2MB Utilities for reading from and writing to flash AM29LV160.classFFSFlash File System
Works if code runs out of RAM or flash Sets aside part of the onboard flash for a file systemclassFileFile, which can be used by the flash file system (FFS)classFileTransferfiles can be manually uploaded over SCI2, uses interrupt driven SCI driverclassRiderRider, to be placed onto a file
multiple riders might be placed for reading and writing -
Uses of Object in org.deepjava.runtime.mpc555.sysp
Subclasses of Object in org.deepjava.runtime.mpc555.sysp Modifier and Type Class Description classSpeedController4DCMotorSpeed controller (PI control) for DC motor. -
Uses of Object in org.deepjava.runtime.ppc32
Subclasses of Object in org.deepjava.runtime.ppc32 Modifier and Type Class Description classDecrementerThe class for the PPC decrementer exception.classFloatingPointUnavailableThe class for the PPC floating point unavailable exception.classHeapHeap manager with mark-sweep garbage collection.
As soon as the remaining heap space is lower than a third of the total available heap space, a garbage collection is called.classMachineCheckThe class for the PPC machine check exception.classPPCExceptionThe base class for all the PPC exceptions.classProgramExcThe class for the PPC program exception.classSystemCallThe class for the PPC system call exception.classTaskThis class implements a simple non-preemptive tasking system. -
Uses of Object in org.deepjava.runtime.util
Subclasses of Object in org.deepjava.runtime.util Modifier and Type Class Description classByteArrayFifoFirst in first outbytearray queue.classByteFifoFirst in first outbytequeue.classByteLiFoNon thread-save last in first outbytequeue.classDummyInputStreamA readable source of bytes.classDummyOutputStreamA writable sink for bytes.classIntFifoFirst in first outIntegerqueue.classIntPacketInterface for the RN131 driver to send and receive integer values.classMatrixThis class implements matrices and their operations.classSLIPInterface for the RN131 driver to send and receive packets with the SLIP protocol.classVectorThis class implements a n-dimensional vector.classVector3This class implements a 3-dimensional vector.classVector4This class implements a 4-dimensional vector. -
Uses of Object in org.deepjava.runtime.zynq7000
Subclasses of Object in org.deepjava.runtime.zynq7000 Modifier and Type Class Description classDecrementerThe class for the ARM private timer.classIrqInterruptThe class for the ARM irq interrupt.(package private) classResetThe class for the ARM reset exception. -
Uses of Object in org.deepjava.runtime.zynq7000.demo
Subclasses of Object in org.deepjava.runtime.zynq7000.demo Modifier and Type Class Description classDecrementerDemoSimple demo application how to use theDecrementer.classMotorDemoDemo application for motor controller in sign magnitude mode.classSystemInOutReflectorDemo for InputStream and OutputStream using UART1.
Received characters will be sent back immediately.classSystemOutDemoDemo for System.out using UART1.classTCRT1000DemoDemo application for the TCRT1000 driver.classVL53L0XDemoDemo application for the VL53L0X driver.classWatchdogDemoclassWifiDemo -
Uses of Object in org.deepjava.runtime.zynq7000.driver
Subclasses of Object in org.deepjava.runtime.zynq7000.driver Modifier and Type Class Description classFlinkUARTInputStreamInput Stream to read bytes from a UART interface.classFlinkUARTOutputStreamStream to write bytes to a UART interface.classHD44780UDriver for character display with 2 - 4 rows and 16 columns.
Display controller: HD44780U
Connected to flink gpios of the Zynq7000.classRN131Driver for Roving RN-131C WiFly Module.classTCRT1000Driver for up to 16 pulsed and multiplexed TCRT1000 or HLC1393 reflection distance sensors.
The driver needs 5 digital outputs and a single analog input of an AD7476.classUARTInterrupt controlled driver for the UART0 or the UART1 of the Zynq7000.classUARTInputStreamInput Stream to read bytes from a UART interface.classUARTOutputStreamStream to write bytes to a UART interface.classVL53L0XInterrupt controlled driver for the VL53L0X TOF Sensor with the SPI1 of the Zynq7000.classWatchdogTaskTask which periodically resets a flink watchdog subdevice, @see org.deepjava.flink.subdevices.FlinkWatchdog.classXADCDriver for the internal analog to digital converter XADC. -
Uses of Object in org.deepjava.runtime.zynq7000.microzed
Subclasses of Object in org.deepjava.runtime.zynq7000.microzed Modifier and Type Class Description classKernelThis is the kernel class. -
Uses of Object in org.deepjava.runtime.zynq7000.microzed.demo
Subclasses of Object in org.deepjava.runtime.zynq7000.microzed.demo Modifier and Type Class Description classBlinkerclassFlinkDemo -
Uses of Object in org.deepjava.runtime.zynq7000.microzed.driver
Subclasses of Object in org.deepjava.runtime.zynq7000.microzed.driver Modifier and Type Class Description classMIO_DIODriver to use the MIO pins on the MicroZed board as digital input or outputs.
The driver supports digital functions on MIO0, MIO9 ..classRTBoardDriver for the Microzed board for control applications. -
Uses of Object in org.deepjava.runtime.zynq7000.sysp
Subclasses of Object in org.deepjava.runtime.zynq7000.sysp Modifier and Type Class Description classSpeedController4DCMotorSpeed controller (PI control) for DC motor. -
Uses of Object in org.deepjava.runtime.zynq7000.zybo
Subclasses of Object in org.deepjava.runtime.zynq7000.zybo Modifier and Type Class Description classKernelThis is the kernel class. -
Uses of Object in org.deepjava.runtime.zynq7000.zybo.demo
Subclasses of Object in org.deepjava.runtime.zynq7000.zybo.demo Modifier and Type Class Description classBlinkerclassFlinkDemo -
Uses of Object in org.deepjava.unsafe
Subclasses of Object in org.deepjava.unsafe Modifier and Type Class Description classUSMethods in org.deepjava.unsafe with parameters of type Object Modifier and Type Method Description static intUS. REF(Object ref)Returns object reference as address -
Uses of Object in org.deepjava.unsafe.arm
Subclasses of Object in org.deepjava.unsafe.arm Modifier and Type Class Description classUSThis class allows for accessing absolute memory locations and machine registers on a ARM processor. -
Uses of Object in org.deepjava.unsafe.ppc
Subclasses of Object in org.deepjava.unsafe.ppc Modifier and Type Class Description classUSThis class allows for accessing absolute memory locations and machine registers on a PowerPC processor.
-