All > Technology > Programming > Java
T9 is a text input method for mobile phones and other small devices. It replaces the "multi-tap" input method by guessing the word that you are trying to enter. T9 may be embedded in a device by the manufacturer. Note that even if the device supports T9, the Java implementation may or may not use it. Check your documentation for details.
- Browse Related Terms: CDC (Connected Device Configuration), CLDC (Connected, Limited Device Configuration), configuration, Foundation Profile, GCF (Generic Connection Framework), Java 2 Platform, Micro Edition (J2ME), Java ME (Java Micro Edition), Java ME WTK, JDBC for CDC/FP, LCDUI (Liquid Crystal Display User Interface), MExE (Mobile Execution Environment), MIDP (Mobile Information Device Profile), MIDP-NG (Next Generation MIDP specification), optional package, PDAP (Personal Digital Assistant Profile), Personal Profile, PersonalJava, profile, RMI OP (RMI Optional Package), RMI Profile, T9
All > Technology > Programming > Java
- In XML documents, a piece of text that describes a unit of data or an element. The tag is distinguishable as markup, as opposed to data, because it is surrounded by angle brackets (
<
and>
). To treat such markup syntax as data, you use an entity reference or aCDATA
section.
Also listed in:
All > Technology > Programming > Java
The combination of an IP address and Transmission Control Protocol (TCP) port number.
- Browse Related Terms: datagram, IP, operator precedence, port, TCP (Transmission Control Protocol), TCP endpoint, TCP/IP, UDP (User Datagram Protocol), WTP (Wireless Transaction Protocol)
All > Technology > Programming > Java
Transmission Control Protocol based on IP. This is an Internet protocol that provides for the reliable delivery of streams of data from one host to another. See also IP.
- Browse Related Terms: datagram, IP, operator precedence, port, TCP (Transmission Control Protocol), TCP endpoint, TCP/IP, UDP (User Datagram Protocol), WTP (Wireless Transaction Protocol)
Also listed in:
- All > Law > E-Discovery
- All > Technology > Telecommunications
All > Technology > Programming > Java
The Transmission Control Protocol (TCP) is a set of rules that allow reliable communication between two processes across a network. See User Datagram Protocol (UDP) for an alternative unreliable protocol.
- Browse Related Terms: datagram, IP, operator precedence, port, TCP (Transmission Control Protocol), TCP endpoint, TCP/IP, UDP (User Datagram Protocol), WTP (Wireless Transaction Protocol)
Also listed in:
All > Technology > Programming > Java
Time Division Multiple Access (TDMA) is a second-generation modulation standard using bandwidth allocated in the 800 MHz, 900 MHz, and 1900MHz ranges.
- Browse Related Terms: 3G (Third generation), 802.11, AMPS (Advanced Mobile Phone Service), CDMA (Code-Division Multiple Access), CDMA One, CDMA2000, CDPD (Cellular Digital Packet Data), EDGE (Enhanced Data GSM Environment), FDMA (Frequency-division multiple-access), i-mode, JavaSpaces, LAN (Local area network), OTA (Over The Air), PCS (Personal Communications Service), PDC (Personal Digital Cellular), TDMA (Time-division multiple access), UMTS (Universal Mobile Telecommunications Service), W-CDMA (Wideband Code-Division Multiple Access), WAE (Wireless Application Environment), WDP (Wireless Datagram Protocol)
Also listed in:
All > Technology > Programming > Java
A test suite, a set of tools, and other requirements used to certify an implementation of a particular Sun technology conformant both to the applicable specifications and to Sun or Sun-designated reference implementations.
- Browse Related Terms: CTS, IEEE 754, J2EE product, Java 2 SDK, Java Card, Java Compatibility Kit (JCK), JavaCheck, JSR (Java Specification Request), Peer, Technology Compatibility Kit (TCK), Tomcat
All > Technology > Programming > Java
Telematics is a location-based service that routes event notification and control data over wireless networks to and from mobile devices installed in automobiles. Telematics makes use of GPS technology to track vehicle latitude and longitude, and displays maps in LED consoles mounted in dashboards. It connects to remote processing centers that turn provide server-side Internet and voice services, as well as access to database resources.
- Browse Related Terms: context root, document root, OMG, Telematics, W3C, WAP (Wireless Application Protocol), Web application, world readable files, WWW
All > Technology > Programming > Java
- A set of formatting instructions that apply to the nodes selected by an XPath expression.
Also listed in:
- All > Recreation > Sports > NASCAR
- All > Science > Biotechnology and Genetics > Food Biotechnology
- All > Technology > E-mail > Lotus Domino
- All > Technology > GIS
- All > Technology > Records Management
- All > Technology > Security
- All > Technology > Security > Biometrics
- All > Technology > Virtualization
All > Technology > Programming > Java
All > Technology > Programming > Java
A system that runs a very light operating system with no local system administration and executes applications delivered over the network.
- Browse Related Terms: cHTML (Compact HTML), disk drive, File System, multiprogramming system, operating system, Software Engineering, swapping, Thin Client, UTF
Also listed in:
- All > Law > E-Discovery
All > Technology > Programming > Java
A Java keyword that can be used to represent an instance of the class in which it appears.
this
can be used to access class variables and methods.A Java reserved word with several different uses:
- Within a constructor, it may be used as the first statement to call another constructor in the same class. For example
// Initialise with default values. public Heater() { // Use the other constructor. this(15, 20); } // Initialise with the given values. public Heater(int min,int max) { ... }
- Within a constructor or method, it may be used to distinguish between a field and a parameter or method variable of the same name. For instance:
public Heater(int min,int max) { this.min = min; this.max = max; ... }
- It can be used as a reference to the current object, typically in order to pass a reference to another object:
talker.talkToMe(this);
- Within a constructor, it may be used as the first statement to call another constructor in the same class. For example
- Browse Related Terms: Attribute, class constant, class variable, constant, encapsulation, instance variable, local variable, magic number, method variable, model-view pattern, out of scope, overloading, static field, static variable, this, variable
All > Technology > Programming > Java
A lightweight process that is managed by the Java Virtual Machine (JVM). Support for threads is provided by the
Thread
class in thejava.lang
package.The basic unit of program execution. A process can have several threads running concurrently, each performing a different job, such as waiting for events or performing a time-consuming job that the program doesn't need to complete before going on. When a thread has finished its job, the thread is suspended or destroyed. See also process.
- Browse Related Terms: big-endian, CVM (Compact Virtual Machine), JVM, KVM (Kilobyte Virtual Machine), little-endian, scheduler, Thread, virtual machine
Also listed in:
- All > Law > E-Discovery
- All > Technology > E-mail > Lotus Domino
- All > Technology > Programming > Perl
- All > Technology > Telecommunications
All > Technology > Programming > Java
A condition that applies to a thread that is prevented from running by other threads that do not yield or become blocked.
- Browse Related Terms: Concurrency, curly brackets, daemon thread, garbage collector, interrupt, lightweight process, livelock, multithreaded, parallel programming, polling, preempt, priority level, process, quantum, race hazard, round robin allocation, synchronized, thread starvation, timeslice
All > Technology > Programming > Java
A Java keyword that allows the user to throw an exception or any class that implements the "throwable" interface.
- Browse Related Terms: anonymous class, API, application programming interface (API), core class, Instance, instantiation, JFC, NEW, new operator, no-arg constructor, non-static nested class, object construction, search path, throw, type
All > Technology > Programming > Java
When an exceptional circumstance arises in a program - often as a result of a logical error, and exception object is created and thrown. If the exception is not caught by an exception handler, the program will terminate with a runtime error.
- Browse Related Terms: bounds, catch clause, catching exceptions, checked exception, exception, exception handler, finally clause, propagation, protected statement, throw an exception, throw statement, try, try statement, unchecked exception
All > Technology > Programming > Java
A statement used to throw an exception. For instance
throw new IndexOutOfBoundsException(i+" is too large.");
- Browse Related Terms: bounds, catch clause, catching exceptions, checked exception, exception, exception handler, finally clause, propagation, protected statement, throw an exception, throw statement, try, try statement, unchecked exception
All > Technology > Programming > Java
All > Technology > Programming > Java
A clause in a method header indicating that one or more exceptions will be propagated from this method. For instance
public int find(String s) throws NotFoundException
- Browse Related Terms: downcast, immutable object, main method, out-of-bounds value, return type, serialization, string, throws clause
All > Technology > Programming > Java
An operating system that shares processor time between multiple processes by allocating each a timeslice. Once a process's timeslice has expired, another process is given a chance to run.
- Browse Related Terms: address space, archiving, compositing, deployment, distributed, double buffering, host system, interprocess communication, micro-chip, normalization, North American Industry Classification System (NAICS), object serialization, preverification, Random Access Memory, timesharing system, virtual memory