- IDENTICAL - Static variable in class java.text.Collator
-
Collator strength value.
- identities() - Method in class java.security.IdentityScope
-
Deprecated.
Returns an enumeration of all identities in this identity scope.
- identity(Class<?>) - Static method in class java.lang.invoke.MethodHandles
-
Produces a method handle which returns its sole argument when invoked.
- Identity - Class in java.security
-
- Identity() - Constructor for class java.security.Identity
-
Deprecated.
Constructor for serialization only.
- Identity(String, IdentityScope) - Constructor for class java.security.Identity
-
Deprecated.
Constructs an identity with the specified name and scope.
- Identity(String) - Constructor for class java.security.Identity
-
Deprecated.
Constructs an identity with the specified name and no scope.
- identity() - Static method in interface java.util.function.DoubleUnaryOperator
-
Returns a unary operator that always returns its input argument.
- identity() - Static method in interface java.util.function.Function
-
Returns a function that always returns its input argument.
- identity() - Static method in interface java.util.function.IntUnaryOperator
-
Returns a unary operator that always returns its input argument.
- identity() - Static method in interface java.util.function.LongUnaryOperator
-
Returns a unary operator that always returns its input argument.
- identity() - Static method in interface java.util.function.UnaryOperator
-
Returns a unary operator that always returns its input argument.
- identityEquals(Identity) - Method in class java.security.Identity
-
Deprecated.
Tests for equality between the specified identity and this identity.
- identityHashCode(Object) - Static method in class java.lang.System
-
identityHashCode returns the same hash code that is returned by
the not-overwritten Object.hashCode() function.
- IdentityHashMap<K,V> - Class in java.util
-
This class implements the Map interface with a hash table, using
reference-equality in place of object-equality when comparing keys (and
values).
- IdentityHashMap() - Constructor for class java.util.IdentityHashMap
-
Constructs a new, empty identity hash map with a default expected
maximum size (21).
- IdentityHashMap(int) - Constructor for class java.util.IdentityHashMap
-
Constructs a new, empty map with the specified expected maximum size.
- IdentityHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.IdentityHashMap
-
Constructs a new identity hash map containing the keys-value mappings
in the specified map.
- IdentityScope - Class in java.security
-
- IdentityScope() - Constructor for class java.security.IdentityScope
-
Deprecated.
This constructor is used for serialization only and should not
be used by subclasses.
- IdentityScope(String) - Constructor for class java.security.IdentityScope
-
Deprecated.
Constructs a new identity scope with the specified name.
- IdentityScope(String, IdentityScope) - Constructor for class java.security.IdentityScope
-
Deprecated.
Constructs a new identity scope with the specified name and scope.
- IDEOGRAPHIC_DESCRIPTION_CHARACTERS - Static variable in class java.lang.Character.UnicodeBlock
-
Constant for the "Ideographic Description Characters" Unicode character block.
- IDN - Class in java.net
-
Provides methods to convert internationalized domain names (IDNs) between
a normal Unicode representation and an ASCII Compatible Encoding (ACE) representation.
- IEEEremainder(double, double) - Static method in class java.lang.Math
-
Computes the remainder operation on two arguments as prescribed
by the IEEE 754 standard.
- IEEEremainder(double, double) - Static method in class java.lang.StrictMath
-
Computes the remainder operation on two arguments as prescribed
by the IEEE 754 standard.
- ifModifiedSince - Variable in class java.net.URLConnection
-
Some protocols support skipping the fetching of the object unless
the object has been modified more recently than a certain time.
- ifPresent(Consumer<? super T>) - Method in class java.util.Optional
-
If a value is present, invoke the specified consumer with the value,
otherwise do nothing.
- ifPresent(DoubleConsumer) - Method in class java.util.OptionalDouble
-
Have the specified consumer accept the value if a value is present,
otherwise do nothing.
- ifPresent(IntConsumer) - Method in class java.util.OptionalInt
-
Have the specified consumer accept the value if a value is present,
otherwise do nothing.
- ifPresent(LongConsumer) - Method in class java.util.OptionalLong
-
Have the specified consumer accept the value if a value is present,
otherwise do nothing.
- ignorableWhitespace(char[], int, int) - Method in interface org.xml.sax.ContentHandler
-
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in interface org.xml.sax.DocumentHandler
-
Deprecated.
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.HandlerBase
-
Deprecated.
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.DefaultHandler
-
Receive notification of ignorable whitespace in element content.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.ParserAdapter
-
Adapter implementation method; do not call.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.XMLFilterImpl
-
Filter an ignorable whitespace event.
- ignorableWhitespace(char[], int, int) - Method in class org.xml.sax.helpers.XMLReaderAdapter
-
Adapt a SAX2 ignorable whitespace event.
- IGNORE - Static variable in class java.nio.charset.CodingErrorAction
-
Action indicating that a coding error is to be handled by dropping the
erroneous input and resuming the coding operation.
- IllegalAccessError - Error in java.lang
-
Thrown if an application attempts to access or modify a field, or
to call a method that it does not have access to.
- IllegalAccessError() - Constructor for error java.lang.IllegalAccessError
-
Constructs an IllegalAccessError
with no detail message.
- IllegalAccessError(String) - Constructor for error java.lang.IllegalAccessError
-
Constructs an IllegalAccessError
with the specified
detail message.
- IllegalAccessException - Exception in java.lang
-
An IllegalAccessException is thrown when an application tries
to reflectively create an instance (other than an array),
set or get a field, or invoke a method, but the currently
executing method does not have access to the definition of
the specified class, field, method or constructor.
- IllegalAccessException() - Constructor for exception java.lang.IllegalAccessException
-
Constructs an IllegalAccessException
without a
detail message.
- IllegalAccessException(String) - Constructor for exception java.lang.IllegalAccessException
-
Constructs an IllegalAccessException
with a detail message.
- IllegalArgumentException - Exception in java.lang
-
Thrown to indicate that a method has been passed an illegal or
inappropriate argument.
- IllegalArgumentException() - Constructor for exception java.lang.IllegalArgumentException
-
Constructs an IllegalArgumentException
with no
detail message.
- IllegalArgumentException(String) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs an IllegalArgumentException
with the
specified detail message.
- IllegalArgumentException(String, Throwable) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs a new exception with the specified detail message and
cause.
- IllegalArgumentException(Throwable) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs a new exception with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- IllegalBlockSizeException - Exception in javax.crypto
-
This exception is thrown when the length of data provided to a block
cipher is incorrect, i.e., does not match the block size of the cipher.
- IllegalBlockSizeException() - Constructor for exception javax.crypto.IllegalBlockSizeException
-
Constructs an IllegalBlockSizeException with no detail message.
- IllegalBlockSizeException(String) - Constructor for exception javax.crypto.IllegalBlockSizeException
-
Constructs an IllegalBlockSizeException with the specified
detail message.
- IllegalFormatCodePointException - Exception in java.util
-
- IllegalFormatCodePointException(int) - Constructor for exception java.util.IllegalFormatCodePointException
-
- IllegalFormatConversionException - Exception in java.util
-
Unchecked exception thrown when the argument corresponding to the format
specifier is of an incompatible type.
- IllegalFormatConversionException(char, Class<?>) - Constructor for exception java.util.IllegalFormatConversionException
-
Constructs an instance of this class with the mismatched conversion and
the corresponding argument class.
- IllegalFormatException - Exception in java.util
-
Unchecked exception thrown when a format string contains an illegal syntax
or a format specifier that is incompatible with the given arguments.
- IllegalFormatFlagsException - Exception in java.util
-
Unchecked exception thrown when an illegal combination flags is given.
- IllegalFormatFlagsException(String) - Constructor for exception java.util.IllegalFormatFlagsException
-
Constructs an instance of this class with the specified flags.
- IllegalFormatPrecisionException - Exception in java.util
-
Unchecked exception thrown when the precision is a negative value other than
-1, the conversion does not support a precision, or the value is
otherwise unsupported.
- IllegalFormatPrecisionException(int) - Constructor for exception java.util.IllegalFormatPrecisionException
-
Constructs an instance of this class with the specified precision.
- IllegalFormatWidthException - Exception in java.util
-
Unchecked exception thrown when the format width is a negative value other
than -1 or is otherwise unsupported.
- IllegalFormatWidthException(int) - Constructor for exception java.util.IllegalFormatWidthException
-
Constructs an instance of this class with the specified width.
- IllegalModeException - Exception in javax.microedition.io.file
-
- IllegalModeException() - Constructor for exception javax.microedition.io.file.IllegalModeException
-
- IllegalModeException(String) - Constructor for exception javax.microedition.io.file.IllegalModeException
-
- IllegalMonitorStateException - Exception in java.lang
-
Thrown to indicate that a thread has attempted to wait on an
object's monitor or to notify other threads waiting on an object's
monitor without owning the specified monitor.
- IllegalMonitorStateException() - Constructor for exception java.lang.IllegalMonitorStateException
-
Constructs an IllegalMonitorStateException
with no
detail message.
- IllegalMonitorStateException(String) - Constructor for exception java.lang.IllegalMonitorStateException
-
Constructs an IllegalMonitorStateException
with the
specified detail message.
- IllegalStateException - Exception in java.lang
-
Signals that a method has been invoked at an illegal or
inappropriate time.
- IllegalStateException() - Constructor for exception java.lang.IllegalStateException
-
Constructs an IllegalStateException with no detail message.
- IllegalStateException(String) - Constructor for exception java.lang.IllegalStateException
-
Constructs an IllegalStateException with the specified detail
message.
- IllegalStateException(String, Throwable) - Constructor for exception java.lang.IllegalStateException
-
Constructs a new exception with the specified detail message and
cause.
- IllegalStateException(Throwable) - Constructor for exception java.lang.IllegalStateException
-
Constructs a new exception with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- IllegalThreadStateException - Exception in java.lang
-
Thrown to indicate that a thread is not in an appropriate state
for the requested operation.
- IllegalThreadStateException() - Constructor for exception java.lang.IllegalThreadStateException
-
Constructs an IllegalThreadStateException
with no
detail message.
- IllegalThreadStateException(String) - Constructor for exception java.lang.IllegalThreadStateException
-
Constructs an IllegalThreadStateException
with the
specified detail message.
- IllformedLocaleException - Exception in java.util
-
Thrown by methods in
Locale
and
Locale.Builder
to
indicate that an argument is not a well-formed BCP 47 tag.
- IllformedLocaleException() - Constructor for exception java.util.IllformedLocaleException
-
Constructs a new IllformedLocaleException
with no
detail message and -1 as the error index.
- IllformedLocaleException(String) - Constructor for exception java.util.IllformedLocaleException
-
Constructs a new IllformedLocaleException
with the
given message and -1 as the error index.
- IllformedLocaleException(String, int) - Constructor for exception java.util.IllformedLocaleException
-
Constructs a new IllformedLocaleException
with the
given message and the error index.
- Image - Class in com.codename1.ui
-
Abstracts the underlying platform images allowing us to treat them as a uniform
object.
- Image() - Constructor for class com.codename1.ui.Image
-
- Image(Object) - Constructor for class com.codename1.ui.Image
-
Subclasses may use this and point to an underlying native image which might be
null for a case of an image that doesn't use native drawing
- Image(Image, Void) - Constructor for class com.codename1.ui.Image
-
- Image - Class in com.sun.lwuit
-
Abstracts the underlying platform images allowing us to treat them as a uniform
object.
- Image() - Constructor for class com.sun.lwuit.Image
-
- Image(Object) - Constructor for class com.sun.lwuit.Image
-
Subclasses may use this and point to an underlying native image which might be
null for a case of an image that doesn't use native drawing
- Image(Image, Void) - Constructor for class com.sun.lwuit.Image
-
- IMAGE_INCOMPATIBLE - Static variable in class java.awt.image.VolatileImage
-
Validated image is incompatible with supplied
GraphicsConfiguration
object and should be
re-created as appropriate.
- IMAGE_OK - Static variable in class java.awt.image.VolatileImage
-
Validated image is ready to use as-is.
- IMAGE_RESTORED - Static variable in class java.awt.image.VolatileImage
-
Validated image has been restored and is now ready to use.
- IMAGEABORTED - Static variable in interface java.awt.image.ImageConsumer
-
The image creation process was deliberately aborted.
- imageComplete(int) - Method in interface java.awt.image.ImageConsumer
-
The imageComplete method is called when the ImageProducer is
finished delivering all of the pixels that the source image
contains, or when a single frame of a multi-frame animation has
been completed, or when an error in loading or producing the
image has occured.
- imageComplete(int) - Method in class java.awt.image.ImageFilter
-
Filters the information provided in the imageComplete method of
the ImageConsumer interface.
- imageComplete(int) - Method in class java.awt.image.PixelGrabber
-
The imageComplete method is part of the ImageConsumer API which
this class must implement to retrieve the pixels.
- ImageConsumer - Interface in java.awt.image
-
The interface for objects expressing interest in image data through
the ImageProducer interfaces.
- ImageDownloadService - Class in com.codename1.io.services
-
Simplifies the process of implementing an image link for labels and lists by
binding a request to a component.
- ImageDownloadService(String, ActionListener) - Constructor for class com.codename1.io.services.ImageDownloadService
-
Accepts the url to bind to the list renderer, on completion the action listener
will be invoked with the image so a list can be updated with the data
- ImageDownloadService(String, Component, int, String) - Constructor for class com.codename1.io.services.ImageDownloadService
-
Constructs an image request that will automatically populate the given list
when the response arrives.
- ImageDownloadService(String, List, int, String) - Constructor for class com.codename1.io.services.ImageDownloadService
-
Constructs an image request that will automatically populate the given list
when the response arrives.
- ImageDownloadService(String, Label) - Constructor for class com.codename1.io.services.ImageDownloadService
-
Accepts the url to bind to the label, on completion the label will be updated
and revalidated with the new image.
- IMAGEERROR - Static variable in interface java.awt.image.ImageConsumer
-
An error was encountered while producing the image.
- ImageFilter - Class in java.awt.image
-
This class implements a filter for the set of interface methods that
are used to deliver data from an ImageProducer to an ImageConsumer.
- ImageFilter() - Constructor for class java.awt.image.ImageFilter
-
- ImageIO - Class in com.codename1.ui.util
-
Enable simple operations on image file & image objects such as dynamic scaling
and storage to binary formats such as JPEG.
- ImageIO() - Constructor for class com.codename1.ui.util.ImageIO
-
- ImageObserver - Interface in java.awt.image
-
An asynchronous update interface for receiving notifications about
Image information as the Image is constructed.
- ImageProducer - Interface in java.awt.image
-
The interface for objects which can produce the image data for Images.
- imageUpdate(Image, int, int, int, int, int) - Method in class java.awt.Component
-
Repaints the component when the image has changed.
- imageUpdate(Image, int, int, int, int, int) - Method in interface java.awt.image.ImageObserver
-
This method is called when information about an image which was
previously requested using an asynchronous interface becomes
available.
- ImageViewer - Class in com.codename1.components
-
An image viewer component that allows zooming into an image and potentially flicking between multiple images
- ImageViewer() - Constructor for class com.codename1.components.ImageViewer
-
Default constructor
- ImageViewer(Image) - Constructor for class com.codename1.components.ImageViewer
-
Initializes the component with an image
- IMMUTABLE - Static variable in interface java.util.Spliterator
-
Characteristic value signifying that the element source cannot be
structurally modified; that is, elements cannot be added, replaced, or
removed, so such changes cannot occur during traversal.
- IMPERIAL_ARAMAIC - Static variable in class java.lang.Character.UnicodeBlock
-
Constant for the "Imperial Aramaic" Unicode character block.
- implAccept(Socket) - Method in class java.net.ServerSocket
-
Subclasses of ServerSocket use this method to override accept()
to return their own subclass of socket.
- implCloseChannel() - Method in class java.nio.channels.spi.AbstractInterruptibleChannel
-
Closes this channel.
- implCloseChannel() - Method in class java.nio.channels.spi.AbstractSelectableChannel
-
Closes this channel.
- implCloseSelectableChannel() - Method in class java.nio.channels.spi.AbstractSelectableChannel
-
Closes this selectable channel.
- implCloseSelector() - Method in class java.nio.channels.spi.AbstractSelector
-
Closes this selector.
- implConfigureBlocking(boolean) - Method in class java.nio.channels.spi.AbstractSelectableChannel
-
Adjusts this channel's blocking mode.
- IMPLEMENTATION_TITLE - Static variable in class java.util.jar.Attributes.Name
-
Name
object for Implementation-Title
manifest attribute used for package versioning.
- IMPLEMENTATION_URL - Static variable in class java.util.jar.Attributes.Name
-
- IMPLEMENTATION_VENDOR - Static variable in class java.util.jar.Attributes.Name
-
Name
object for Implementation-Vendor
manifest attribute used for package versioning.
- IMPLEMENTATION_VENDOR_ID - Static variable in class java.util.jar.Attributes.Name
-
- IMPLEMENTATION_VERSION - Static variable in class java.util.jar.Attributes.Name
-
Name
object for Implementation-Version
manifest attribute used for package versioning.
- implies(Permission) - Method in class java.io.FilePermission
-
Checks if this FilePermission object "implies" the specified permission.
- implies(Permission) - Method in class java.net.SocketPermission
-
Checks if this socket permission object "implies" the
specified permission.
- implies(Permission) - Method in class java.net.URLPermission
-
Checks if this URLPermission implies the given permission.
- implies(Permission) - Method in class java.security.AllPermission
-
Checks if the specified permission is "implied" by
this object.
- implies(Permission) - Method in class java.security.BasicPermission
-
Checks if the specified permission is "implied" by
this object.
- implies(CodeSource) - Method in class java.security.CodeSource
-
Returns true if this CodeSource object "implies" the specified CodeSource.
- implies(Permission) - Method in class java.security.Permission
-
Checks if the specified permission's actions are "implied by"
this object's actions.
- implies(Permission) - Method in class java.security.PermissionCollection
-
Checks to see if the specified permission is implied by
the collection of Permission objects held in this PermissionCollection.
- implies(Permission) - Method in class java.security.Permissions
-
Checks to see if this object's PermissionCollection for permissions of
the specified permission's class implies the permissions
expressed in the permission object.
- implies(ProtectionDomain, Permission) - Method in class java.security.Policy
-
Evaluates the global policy for the permissions granted to
the ProtectionDomain and tests whether the permission is
granted.
- implies(Subject) - Method in interface java.security.Principal
-
Returns true if the specified subject is implied by this principal.
- implies(Permission) - Method in class java.security.ProtectionDomain
-
Check and see if this ProtectionDomain implies the permissions
expressed in the Permission object.
- implies(Permission) - Method in class java.security.UnresolvedPermission
-
This method always returns false for unresolved permissions.
- implies(Permission) - Method in class java.util.PropertyPermission
-
Checks if this PropertyPermission object "implies" the specified
permission.
- implies(Permission) - Method in class javax.microedition.xlet.ixc.IxcPermission
-
- implies(Permission) - Method in class javax.security.auth.PrivateCredentialPermission
-
Checks if this PrivateCredentialPermission
implies
the specified Permission
.
- importedKeyCascade - Static variable in interface java.sql.DatabaseMetaData
-
For the column UPDATE_RULE
,
indicates that
when the primary key is updated, the foreign key (imported key)
is changed to agree with it.
- importedKeyInitiallyDeferred - Static variable in interface java.sql.DatabaseMetaData
-
Indicates deferrability.
- importedKeyInitiallyImmediate - Static variable in interface java.sql.DatabaseMetaData
-
Indicates deferrability.
- importedKeyNoAction - Static variable in interface java.sql.DatabaseMetaData
-
For the columns UPDATE_RULE
and DELETE_RULE
, indicates that
if the primary key has been imported, it cannot be updated or deleted.
- importedKeyNotDeferrable - Static variable in interface java.sql.DatabaseMetaData
-
Indicates deferrability.
- importedKeyRestrict - Static variable in interface java.sql.DatabaseMetaData
-
For the column UPDATE_RULE
, indicates that
a primary key may not be updated if it has been imported by
another table as a foreign key.
- importedKeySetDefault - Static variable in interface java.sql.DatabaseMetaData
-
For the columns UPDATE_RULE
and DELETE_RULE
, indicates that
if the primary key is updated or deleted, the foreign key (imported key)
is set to the default value.
- importedKeySetNull - Static variable in interface java.sql.DatabaseMetaData
-
For the columns UPDATE_RULE
and DELETE_RULE
, indicates that
when the primary key is updated or deleted, the foreign key (imported key)
is changed to NULL
.
- importNode(Node, boolean) - Method in interface org.w3c.dom.Document
-
Imports a node from another document to this document, without altering
or removing the source node from the original document; this method
creates a new copy of the source node.
- in - Variable in class com.codename1.io.gzip.FilterInputStream
-
- in - Variable in class java.io.FilterInputStream
-
The input stream to be filtered.
- in - Variable in class java.io.FilterReader
-
The underlying character-input stream.
- in - Variable in class java.io.PipedInputStream
-
The index of the position in the circular buffer at which the
next byte of data will be stored when received from the connected
piped output stream.
- in(Class<?>) - Method in class java.lang.invoke.MethodHandles.Lookup
-
Creates a lookup on the specified new lookup class.
- in - Static variable in class java.lang.System
-
The "standard" input stream.
- inactive(ActivationID) - Static method in class java.rmi.activation.Activatable
-
Informs the system that the object with the corresponding activation
id
is currently inactive.
- inactiveGroup() - Method in class java.rmi.activation.ActivationGroup
-
This protected method is necessary for subclasses to
make the inactiveGroup
callback to the group's
monitor.
- inactiveGroup(ActivationGroupID, long) - Method in interface java.rmi.activation.ActivationMonitor
-
Informs that the group is now inactive.
- inactiveObject(ActivationID) - Method in class java.rmi.activation.ActivationGroup
-
The group's inactiveObject
method is called
indirectly via a call to the Activatable.inactive
method.
- inactiveObject(ActivationID) - Method in interface java.rmi.activation.ActivationMonitor
-
An activation group calls its monitor's
inactiveObject
method when an object in its group
becomes inactive (deactivates).
- inCheck - Variable in class java.lang.SecurityManager
-
- inClass(String) - Method in class java.lang.SecurityManager
-
- inClassLoader() - Method in class java.lang.SecurityManager
-
- IncompatibleClassChangeError - Error in java.lang
-
Thrown when an incompatible class change has occurred to some class
definition.
- IncompatibleClassChangeError() - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs an IncompatibleClassChangeError
with no
detail message.
- IncompatibleClassChangeError(String) - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs an IncompatibleClassChangeError
with the
specified detail message.
- IncompleteAnnotationException - Exception in java.lang.annotation
-
Thrown to indicate that a program has attempted to access an element of
an annotation type that was added to the annotation type definition after
the annotation was compiled (or serialized).
- IncompleteAnnotationException(Class<? extends Annotation>, String) - Constructor for exception java.lang.annotation.IncompleteAnnotationException
-
Constructs an IncompleteAnnotationException to indicate that
the named element was missing from the specified annotation type.
- increment() - Method in class java.util.concurrent.atomic.LongAdder
-
Equivalent to add(1)
.
- incrementAndGet() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Atomically increments by one the current value.
- incrementAndGet(int) - Method in class java.util.concurrent.atomic.AtomicIntegerArray
-
Atomically increments by one the element at index i
.
- incrementAndGet(T) - Method in class java.util.concurrent.atomic.AtomicIntegerFieldUpdater
-
Atomically increments by one the current value of the field of the
given object managed by this updater.
- incrementAndGet() - Method in class java.util.concurrent.atomic.AtomicLong
-
Atomically increments by one the current value.
- incrementAndGet(int) - Method in class java.util.concurrent.atomic.AtomicLongArray
-
Atomically increments by one the element at index i
.
- incrementAndGet(T) - Method in class java.util.concurrent.atomic.AtomicLongFieldUpdater
-
Atomically increments by one the current value of the field of the
given object managed by this updater.
- incrementExact(int) - Static method in class java.lang.Math
-
Returns the argument incremented by one, throwing an exception if the
result overflows an int
.
- incrementExact(long) - Static method in class java.lang.Math
-
Returns the argument incremented by one, throwing an exception if the
result overflows a long
.
- inDaylightTime(Date) - Method in class java.util.SimpleTimeZone
-
Queries if the given date is in daylight saving time.
- inDaylightTime(Date) - Method in class java.util.TimeZone
-
Queries if the given date
is in Daylight Saving Time in
this time zone.
- INDENT - Static variable in class com.codename1.ui.layouts.LayoutStyle
-
Possible argument to getPreferredGap.
- INDENT - Static variable in class com.sun.lwuit.layouts.LayoutStyle
-
Possible argument to getPreferredGap.
- INDENT - Static variable in class javax.xml.transform.OutputKeys
-
indent = "yes" | "no".
- INDETERMINATE - Static variable in class javax.xml.datatype.DatatypeConstants
-
Comparison result.
- INDEX_SIZE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If index or size is negative, or greater than the allowed value.
- IndexColorModel - Class in java.awt.image
-
The IndexColorModel
class is a ColorModel
class that works with pixel values consisting of a
single sample that is an index into a fixed colormap in the default
sRGB color space.
- IndexColorModel(int, int, byte[], byte[], byte[]) - Constructor for class java.awt.image.IndexColorModel
-
Constructs an IndexColorModel
from the specified
arrays of red, green, and blue components.
- IndexColorModel(int, int, byte[], byte[], byte[], int) - Constructor for class java.awt.image.IndexColorModel
-
Constructs an IndexColorModel
from the given arrays
of red, green, and blue components.
- IndexColorModel(int, int, byte[], byte[], byte[], byte[]) - Constructor for class java.awt.image.IndexColorModel
-
Constructs an IndexColorModel
from the given
arrays of red, green, blue and alpha components.
- IndexColorModel(int, int, byte[], int, boolean) - Constructor for class java.awt.image.IndexColorModel
-
Constructs an IndexColorModel
from a single
array of interleaved red, green, blue and optional alpha
components.
- IndexColorModel(int, int, byte[], int, boolean, int) - Constructor for class java.awt.image.IndexColorModel
-
Constructs an IndexColorModel
from a single array of
interleaved red, green, blue and optional alpha components.
- IndexColorModel(int, int, int[], int, boolean, int, int) - Constructor for class java.awt.image.IndexColorModel
-
Constructs an IndexColorModel
from an array of
ints where each int is comprised of red, green, blue, and
optional alpha components in the default RGB color model format.
- IndexColorModel(int, int, int[], int, int, BigInteger) - Constructor for class java.awt.image.IndexColorModel
-
Constructs an IndexColorModel
from an
int
array where each int
is
comprised of red, green, blue, and alpha
components in the default RGB color model format.
- IndexedImage - Class in com.sun.lwuit
-
- IndexedImage(int, int, int[], byte[]) - Constructor for class com.sun.lwuit.IndexedImage
-
- IndexedImage(IndexedImage, Void) - Constructor for class com.sun.lwuit.IndexedImage
-
Deprecated.
- indexOf(int) - Method in class java.lang.String
-
Find the first index of a given character or code point.
- indexOf(int, int) - Method in class java.lang.String
-
Find the first index of a given character or code point starting
from a given findex.
- indexOf(String) - Method in class java.lang.String
-
Return the index of the first substring of this that is equal to
str.
- indexOf(String, int) - Method in class java.lang.String
-
Return the index of the first substring of this that is equal to
str and that start at from or later.
- indexOf(String) - Method in class java.lang.StringBuffer
-
- indexOf(String, int) - Method in class java.lang.StringBuffer
-
- indexOf(String) - Method in class java.lang.StringBuilder
-
- indexOf(String, int) - Method in class java.lang.StringBuilder
-
- indexOf(Object) - Method in class java.util.AbstractList
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in class java.util.ArrayList
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(E, int) - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns the index of the first occurrence of the specified element in
this list, searching forwards from index
, or returns -1 if
the element is not found.
- indexOf(Object) - Method in class java.util.LinkedList
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in interface java.util.List
-
Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
- indexOf(Object) - Method in class java.util.Vector
-
Returns the index of the first occurrence of the specified element
in this vector, or -1 if this vector does not contain the element.
- indexOf(Object, int) - Method in class java.util.Vector
-
Returns the index of the first occurrence of the specified element in
this vector, searching forwards from index
, or returns -1 if
the element is not found.
- indexOfCharSequence(CharSequence, int) - Method in class java.lang.String
-
Return the index of the first occurrence of a substring this that
is equal to a CharSequence and that starts at from or later.
- indexOfComponent(Component) - Method in class com.codename1.ui.Tabs
-
Returns the index of the tab for the specified component.
- indexOfComponent(Component) - Method in class com.sun.lwuit.TabbedPane
-
Returns the index of the tab for the specified component.
- indexOfSubList(List<?>, List<?>) - Static method in class java.util.Collections
-
Returns the starting position of the first occurrence of the specified
target list within the specified source list, or -1 if there is no
such occurrence.
- IndexOutOfBoundsException - Exception in java.lang
-
Thrown to indicate that an index of some sort (such as to an array, to a
string, or to a vector) is out of range.
- IndexOutOfBoundsException() - Constructor for exception java.lang.IndexOutOfBoundsException
-
Constructs an IndexOutOfBoundsException
with no
detail message.
- IndexOutOfBoundsException(String) - Constructor for exception java.lang.IndexOutOfBoundsException
-
Constructs an IndexOutOfBoundsException
with the
specified detail message.
- Inet4Address - Class in java.net
-
This class represents an Internet Protocol version 4 (IPv4) address.
- Inet6Address - Class in java.net
-
This class represents an Internet Protocol version 6 (IPv6) address.
- InetAddress - Class in java.net
-
This class represents an Internet Protocol (IP) address.
- InetSocketAddress - Class in java.net
-
This class implements an IP Socket Address (IP address + port number)
It can also be a pair (hostname + port number), in which case an attempt
will be made to resolve the hostname.
- InetSocketAddress(int) - Constructor for class java.net.InetSocketAddress
-
Creates a socket address where the IP address is the wildcard address
and the port number a specified value.
- InetSocketAddress(InetAddress, int) - Constructor for class java.net.InetSocketAddress
-
Creates a socket address from an IP address and a port number.
- InetSocketAddress(String, int) - Constructor for class java.net.InetSocketAddress
-
Creates a socket address from a hostname and a port number.
- inf - Variable in class java.util.zip.InflaterInputStream
-
Decompressor for this stream.
- inf - Variable in class java.util.zip.InflaterOutputStream
-
Decompressor for this stream.
- InfiniteProgress - Class in com.codename1.components
-
Shows a "Washing Machine" infinite progress indication animation
- InfiniteProgress() - Constructor for class com.codename1.components.InfiniteProgress
-
Default constructor to define the UIID
- InfiniteScrollAdapter - Class in com.codename1.components
-
Allows adapting a scroll container to scroll indefinitely (or at least until
we run out of data), this effectively works by showing an infinite progress
indicator when reaching scroll end then allowing code to fetch more components.
- inflate(int) - Method in class com.codename1.io.gzip.Inflater
-
- inflate(int) - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflate(byte[], int, int) - Method in class java.util.zip.Inflater
-
Uncompresses bytes into specified buffer.
- inflate(byte[]) - Method in class java.util.zip.Inflater
-
Uncompresses bytes into specified buffer.
- inflateEnd() - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateFinished() - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateInit() - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateInit(boolean) - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateInit(int) - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateInit(JZlib.WrapperType) - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateInit(int, JZlib.WrapperType) - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateInit(int, boolean) - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- Inflater - Class in com.codename1.io.gzip
-
- Inflater() - Constructor for class com.codename1.io.gzip.Inflater
-
- Inflater(JZlib.WrapperType) - Constructor for class com.codename1.io.gzip.Inflater
-
- Inflater(int, JZlib.WrapperType) - Constructor for class com.codename1.io.gzip.Inflater
-
- Inflater(int) - Constructor for class com.codename1.io.gzip.Inflater
-
- Inflater(boolean) - Constructor for class com.codename1.io.gzip.Inflater
-
- Inflater(int, boolean) - Constructor for class com.codename1.io.gzip.Inflater
-
- inflater - Variable in class com.codename1.io.gzip.InflaterInputStream
-
- Inflater - Class in java.util.zip
-
This class provides support for general purpose decompression using the
popular ZLIB compression library.
- Inflater(boolean) - Constructor for class java.util.zip.Inflater
-
Creates a new decompressor.
- Inflater() - Constructor for class java.util.zip.Inflater
-
Creates a new decompressor.
- InflaterInputStream - Class in com.codename1.io.gzip
-
- InflaterInputStream(InputStream) - Constructor for class com.codename1.io.gzip.InflaterInputStream
-
- InflaterInputStream(InputStream, boolean) - Constructor for class com.codename1.io.gzip.InflaterInputStream
-
- InflaterInputStream(InputStream, Inflater) - Constructor for class com.codename1.io.gzip.InflaterInputStream
-
- InflaterInputStream(InputStream, Inflater, int) - Constructor for class com.codename1.io.gzip.InflaterInputStream
-
- InflaterInputStream(InputStream, Inflater, int, boolean) - Constructor for class com.codename1.io.gzip.InflaterInputStream
-
- InflaterInputStream - Class in java.util.zip
-
This class implements a stream filter for uncompressing data in the
"deflate" compression format.
- InflaterInputStream(InputStream, Inflater, int) - Constructor for class java.util.zip.InflaterInputStream
-
Creates a new input stream with the specified decompressor and
buffer size.
- InflaterInputStream(InputStream, Inflater) - Constructor for class java.util.zip.InflaterInputStream
-
Creates a new input stream with the specified decompressor and a
default buffer size.
- InflaterInputStream(InputStream) - Constructor for class java.util.zip.InflaterInputStream
-
Creates a new input stream with a default decompressor and buffer size.
- InflaterOutputStream - Class in java.util.zip
-
Implements an output stream filter for uncompressing data stored in the
"deflate" compression format.
- InflaterOutputStream(OutputStream) - Constructor for class java.util.zip.InflaterOutputStream
-
Creates a new output stream with a default decompressor and buffer
size.
- InflaterOutputStream(OutputStream, Inflater) - Constructor for class java.util.zip.InflaterOutputStream
-
Creates a new output stream with the specified decompressor and a
default buffer size.
- InflaterOutputStream(OutputStream, Inflater, int) - Constructor for class java.util.zip.InflaterOutputStream
-
Creates a new output stream with the specified decompressor and
buffer size.
- inflateSetDictionary(byte[], int) - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateSync() - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- inflateSyncPoint() - Method in class com.codename1.io.gzip.ZStream
-
Deprecated.
- INFO - Static variable in class com.codename1.io.Log
-
Constant indicating the logging level Debug is the default and the lowest level
followed by info, warning and error
- INFO - Static variable in class java.util.logging.Level
-
INFO is a message level for informational messages.
- info(String) - Method in class java.util.logging.Logger
-
Log an INFO message.
- info(Supplier<String>) - Method in class java.util.logging.Logger
-
Log a INFO message, which is only to be constructed if the logging
level is such that the message will actually be logged.
- inForkJoinPool() - Static method in class java.util.concurrent.ForkJoinTask
-
Returns
true
if the current thread is a
ForkJoinWorkerThread
executing as a ForkJoinPool computation.
- INFORMATION - Static variable in class javax.security.auth.callback.ConfirmationCallback
-
INFORMATION message type.
- INFORMATION - Static variable in class javax.security.auth.callback.TextOutputCallback
-
Information message.
- INHERIT - Static variable in class java.lang.ProcessBuilder.Redirect
-
Indicates that subprocess I/O source or destination will be the
same as those of the current process.
- InheritableThreadLocal<T> - Class in java.lang
-
This class extends ThreadLocal to provide inheritance of values
from parent thread to child thread: when a child thread is created, the
child receives initial values for all inheritable thread-local variables
for which the parent has values.
- InheritableThreadLocal() - Constructor for class java.lang.InheritableThreadLocal
-
- Inherited - Annotation Type in java.lang.annotation
-
Indicates that an annotation type is automatically inherited.
- inheritedChannel() - Static method in class java.lang.System
-
Returns the channel inherited from the entity that created this
Java virtual machine.
- inheritedChannel() - Method in class java.nio.channels.spi.SelectorProvider
-
Returns the channel inherited from the entity that created this
Java virtual machine.
- inheritIO() - Method in class java.lang.ProcessBuilder
-
Sets the source and destination for subprocess standard I/O
to be the same as those of the current Java process.
- init(String, String) - Static method in class com.codename1.analytics.AnalyticsService
-
Initializes google analytics for this application
- init(AnalyticsService) - Static method in class com.codename1.analytics.AnalyticsService
-
Allows installing an analytics service other than the default
- init(int) - Method in class com.codename1.io.gzip.Deflater
-
- init(int, boolean) - Method in class com.codename1.io.gzip.Deflater
-
- init(int, int) - Method in class com.codename1.io.gzip.Deflater
-
- init(int, int, int, JZlib.WrapperType) - Method in class com.codename1.io.gzip.Deflater
-
- init(int, int, int) - Method in class com.codename1.io.gzip.Deflater
-
- init(int, int, boolean) - Method in class com.codename1.io.gzip.Deflater
-
- init() - Method in class com.codename1.io.gzip.Inflater
-
- init(JZlib.WrapperType) - Method in class com.codename1.io.gzip.Inflater
-
- init(int, JZlib.WrapperType) - Method in class com.codename1.io.gzip.Inflater
-
- init(boolean) - Method in class com.codename1.io.gzip.Inflater
-
- init(int) - Method in class com.codename1.io.gzip.Inflater
-
- init(int, boolean) - Method in class com.codename1.io.gzip.Inflater
-
- init(boolean, int) - Static method in class com.codename1.system.DefaultCrashReporter
-
Installs a crash reporter within the system
- init(Component, Component) - Method in class com.codename1.ui.animations.Transition
-
Invoked by
Display
to set the source and destination forms.
- init(Object) - Static method in class com.codename1.ui.Display
-
This is the INTERNAL Display initialization method, it will be removed in future versions of the API.
- init(Component, Component) - Method in class com.sun.lwuit.animations.Transition
-
Invoked by
Display
to set the source and destination forms.
- init(Object) - Static method in class com.sun.lwuit.Display
-
This is the Display initialization method.
- init(int) - Method in class java.security.AlgorithmParameterGenerator
-
Initializes this parameter generator for a certain size.
- init(int, SecureRandom) - Method in class java.security.AlgorithmParameterGenerator
-
Initializes this parameter generator for a certain size and source
of randomness.
- init(AlgorithmParameterSpec) - Method in class java.security.AlgorithmParameterGenerator
-
Initializes this parameter generator with a set of algorithm-specific
parameter generation values.
- init(AlgorithmParameterSpec, SecureRandom) - Method in class java.security.AlgorithmParameterGenerator
-
Initializes this parameter generator with a set of algorithm-specific
parameter generation values.
- init(AlgorithmParameterSpec) - Method in class java.security.AlgorithmParameters
-
Initializes this parameter object using the parameters
specified in paramSpec
.
- init(byte[]) - Method in class java.security.AlgorithmParameters
-
Imports the specified parameters and decodes them according to the
primary decoding format for parameters.
- init(byte[], String) - Method in class java.security.AlgorithmParameters
-
Imports the parameters from params
and decodes them
according to the specified decoding scheme.
- init(boolean) - Method in interface java.security.cert.CertPathChecker
-
Initializes the internal state of this CertPathChecker
.
- init(boolean) - Method in class java.security.cert.PKIXCertPathChecker
-
Initializes the internal state of this PKIXCertPathChecker
.
- init(int, Key) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key.
- init(int, Key, SecureRandom) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key and a source of randomness.
- init(int, Key, AlgorithmParameterSpec) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key and a set of algorithm
parameters.
- init(int, Key, AlgorithmParameterSpec, SecureRandom) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key, a set of algorithm
parameters, and a source of randomness.
- init(int, Key, AlgorithmParameters) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key and a set of algorithm
parameters.
- init(int, Key, AlgorithmParameters, SecureRandom) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key, a set of algorithm
parameters, and a source of randomness.
- init(int, Certificate) - Method in class javax.crypto.Cipher
-
Initializes this cipher with the public key from the given certificate.
- init(int, Certificate, SecureRandom) - Method in class javax.crypto.Cipher
-
Initializes this cipher with the public key from the given certificate
and
a source of randomness.
- init(Key) - Method in class javax.crypto.ExemptionMechanism
-
Initializes this exemption mechanism with a key.
- init(Key, AlgorithmParameterSpec) - Method in class javax.crypto.ExemptionMechanism
-
Initializes this exemption mechanism with a key and a set of algorithm
parameters.
- init(Key, AlgorithmParameters) - Method in class javax.crypto.ExemptionMechanism
-
Initializes this exemption mechanism with a key and a set of algorithm
parameters.
- init(Key) - Method in class javax.crypto.KeyAgreement
-
Initializes this key agreement with the given key, which is required to
contain all the algorithm parameters required for this key agreement.
- init(Key, SecureRandom) - Method in class javax.crypto.KeyAgreement
-
Initializes this key agreement with the given key and source of
randomness.
- init(Key, AlgorithmParameterSpec) - Method in class javax.crypto.KeyAgreement
-
Initializes this key agreement with the given key and set of
algorithm parameters.
- init(Key, AlgorithmParameterSpec, SecureRandom) - Method in class javax.crypto.KeyAgreement
-
Initializes this key agreement with the given key, set of
algorithm parameters, and source of randomness.
- init(SecureRandom) - Method in class javax.crypto.KeyGenerator
-
Initializes this key generator.
- init(AlgorithmParameterSpec) - Method in class javax.crypto.KeyGenerator
-
Initializes this key generator with the specified parameter set.
- init(AlgorithmParameterSpec, SecureRandom) - Method in class javax.crypto.KeyGenerator
-
Initializes this key generator with the specified parameter
set and a user-provided source of randomness.
- init(int) - Method in class javax.crypto.KeyGenerator
-
Initializes this key generator for a certain keysize.
- init(int, SecureRandom) - Method in class javax.crypto.KeyGenerator
-
Initializes this key generator for a certain keysize, using a
user-provided source of randomness.
- init(Key) - Method in class javax.crypto.Mac
-
Initializes this Mac
object with the given key.
- init(Key, AlgorithmParameterSpec) - Method in class javax.crypto.Mac
-
Initializes this Mac
object with the given key and
algorithm parameters.
- init(KeyStore, char[]) - Method in class javax.net.ssl.KeyManagerFactory
-
Initializes this factory with a source of key material.
- init(ManagerFactoryParameters) - Method in class javax.net.ssl.KeyManagerFactory
-
Initializes this factory with a source of provider-specific
key material.
- init(KeyManager[], TrustManager[], SecureRandom) - Method in class javax.net.ssl.SSLContext
-
Initializes this context.
- init(KeyStore) - Method in class javax.net.ssl.TrustManagerFactory
-
Initializes this factory with a source of certificate
authorities and related trust material.
- init(ManagerFactoryParameters) - Method in class javax.net.ssl.TrustManagerFactory
-
Initializes this factory with a source of provider-specific
trust material.
- initCause(Throwable) - Method in class java.lang.Throwable
-
Initializes the cause of this throwable to the specified value.
- initCause(Throwable) - Method in exception javax.xml.transform.TransformerException
-
Initializes the cause of this throwable to the specified value.
- initComponent() - Method in class com.codename1.components.Ads
-
- initComponent() - Method in class com.codename1.components.ImageViewer
-
- initComponent() - Method in class com.codename1.components.InfiniteProgress
-
- initComponent() - Method in class com.codename1.components.MediaPlayer
-
- initComponent() - Method in class com.codename1.components.OnOffSwitch
-
- initComponent() - Method in class com.codename1.components.RSSReader
-
- initComponent() - Method in class com.codename1.ui.AutoCompleteTextField
-
- initComponent() - Method in class com.codename1.ui.Component
-
Allows subclasses to bind functionality that relies on fully initialized and
"ready for action" component state
- initComponent() - Method in class com.codename1.ui.html.HTMLComponent
-
Deprecated.
Overrides initComponent to add the key listeners to the access keys when the component is first added to the form/displayed
This is useful when the component is added only after the page was read
- initComponent() - Method in class com.codename1.ui.list.ContainerList
-
- initComponent() - Method in class com.codename1.ui.list.MultiList
-
- initComponent() - Method in class com.codename1.ui.PeerComponent
-
- initComponent() - Method in class com.codename1.ui.Slider
-
- initComponent() - Method in class com.codename1.ui.spinner.BaseSpinner
-
Default constructor
- initComponent() - Method in class com.codename1.ui.table.Table
-
- initComponent() - Method in class com.codename1.ui.Tabs
-
- initComponent() - Method in class com.sun.lwuit.Component
-
Allows subclasses to bind functionality that relies on fully initialized and
"ready for action" component state
- initComponent() - Method in class com.sun.lwuit.html.HTMLComponent
-
Overrides initComponent to add the key listeners to the access keys when the component is first added to the form/displayed
This is useful when the component is added only after the page was read
- initComponent() - Method in class com.sun.lwuit.MediaComponent
-
- initComponent() - Method in class com.sun.lwuit.spinner.Spinner
-
- initComponent() - Method in class com.sun.lwuit.table.Table
-
- initComponent() - Method in class com.sun.lwuit.TextField
-
- initConnection(Object) - Method in class com.codename1.io.ConnectionRequest
-
Invoked to initialize HTTP headers, cookies etc.
- initConnection(Object) - Method in class com.codename1.io.MultipartRequest
-
- initCookieHeader(String) - Method in class com.codename1.io.ConnectionRequest
-
Allows subclasses to inject cookies into the request
- initCustomStyle(Style) - Method in class com.codename1.ui.Component
-
Allows components to create a style of their own, this method binds the listener
to the style and installs a bg painter
- initCustomStyle(Style) - Method in class com.sun.lwuit.Component
-
Allows components to create a style of their own, this method binds the listener
to the style and installs a bg painter
- initEvent(String, boolean, boolean) - Method in interface org.w3c.dom.events.Event
-
The initEvent
method is used to initialize the value of an
Event
created through the DocumentEvent
interface.
- INITIAL_CAPS_SENTENCE - Static variable in class com.codename1.ui.TextArea
-
This flag is a hint to the implementation that during text editing,
the initial letter of each sentence should be capitalized.
- INITIAL_CAPS_SENTENCE - Static variable in class com.sun.lwuit.TextArea
-
This flag is a hint to the implementation that during text editing,
the initial letter of each sentence should be capitalized.
- INITIAL_CAPS_WORD - Static variable in class com.codename1.ui.TextArea
-
This flag is a hint to the implementation that during text editing,
the initial letter of each word should be capitalized.
- INITIAL_CAPS_WORD - Static variable in class com.sun.lwuit.TextArea
-
This flag is a hint to the implementation that during text editing,
the initial letter of each word should be capitalized.
- INITIAL_QUOTE_PUNCTUATION - Static variable in class java.lang.Character
-
General category "Pi" in the Unicode specification.
- initialize(Ads) - Method in class com.codename1.ads.AdsService
-
Initialize the ads service.
- initialize(DSAParams, SecureRandom) - Method in interface java.security.interfaces.DSAKeyPairGenerator
-
Initializes the key pair generator using the DSA family parameters
(p,q and g) and an optional SecureRandom bit source.
- initialize(int, boolean, SecureRandom) - Method in interface java.security.interfaces.DSAKeyPairGenerator
-
Initializes the key pair generator for a given modulus length
(instead of parameters), and an optional SecureRandom bit source.
- initialize(int) - Method in class java.security.KeyPairGenerator
-
Initializes the key pair generator for a certain keysize using
a default parameter set and the SecureRandom
implementation of the highest-priority installed provider as the source
of randomness.
- initialize(int, SecureRandom) - Method in class java.security.KeyPairGenerator
-
Initializes the key pair generator for a certain keysize with
the given source of randomness (and a default parameter set).
- initialize(AlgorithmParameterSpec) - Method in class java.security.KeyPairGenerator
-
Initializes the key pair generator using the specified parameter
set and the SecureRandom
implementation of the highest-priority installed provider as the source
of randomness.
- initialize(AlgorithmParameterSpec, SecureRandom) - Method in class java.security.KeyPairGenerator
-
Initializes the key pair generator with the given parameter
set and source of randomness.
- initialize(int, SecureRandom) - Method in class java.security.KeyPairGeneratorSpi
-
Initializes the key pair generator for a certain keysize, using
the default parameter set.
- initialize(AlgorithmParameterSpec, SecureRandom) - Method in class java.security.KeyPairGeneratorSpi
-
Initializes the key pair generator using the specified parameter
set and user-provided source of randomness.
- initialize(Subject, CallbackHandler, Map<String, ?>, Map<String, ?>) - Method in interface javax.security.auth.spi.LoginModule
-
Initialize this LoginModule.
- initialValue() - Method in class java.lang.ThreadLocal
-
Returns the current thread's "initial value" for this
thread-local variable.
- initLaf(UIManager) - Method in class com.codename1.ui.Component
-
This method initializes the Component defaults constants
- initLaf(UIManager) - Method in class com.codename1.ui.Container
-
- initLaf(UIManager) - Method in class com.codename1.ui.Dialog
-
Initialize the default transition for the dialogs overriding the forms
transition
- initLaf(UIManager) - Method in class com.codename1.ui.Form
-
- initLaf(UIManager) - Method in class com.codename1.ui.list.DefaultListCellRenderer
-
- initLaf(UIManager) - Method in class com.codename1.ui.List
-
- initLaf(UIManager) - Method in class com.codename1.ui.RadioButton
-
- initLaf(UIManager) - Method in class com.codename1.ui.Tabs
-
- initLaf(UIManager) - Method in class com.codename1.ui.TextArea
-
- initMenuBar(Form) - Method in class com.codename1.ui.MenuBar
-
Initialize the MenuBar
- initMenuBar(Form) - Method in class com.codename1.ui.SideMenuBar
-
- initModes() - Method in class com.codename1.ui.VirtualKeyboard
-
init all virtual keyboard modes, such as QWERTY_MODE, NUMBERS_SYMBOLS_MODE...
- initMouseEvent(String, boolean, boolean, AbstractView, int, int, int, int, int, boolean, boolean, boolean, boolean, short, EventTarget) - Method in interface org.w3c.dom.events.MouseEvent
-
The initMouseEvent
method is used to initialize the value
of a MouseEvent
created through the
DocumentEvent
interface.
- initMutationEvent(String, boolean, boolean, Node, String, String, String, short) - Method in interface org.w3c.dom.events.MutationEvent
-
The initMutationEvent
method is used to initialize the
value of a MutationEvent
created through the
DocumentEvent
interface.
- initService(Ads) - Method in class com.codename1.ads.AdsService
-
init the service requests.
- initService(Ads) - Method in class com.codename1.ads.InnerActive
-
initialize the ads service
- initSign(PrivateKey) - Method in class java.security.Signature
-
Initialize this object for signing.
- initSign(PrivateKey, SecureRandom) - Method in class java.security.Signature
-
Initialize this object for signing.
- initSpecialButtons() - Method in class com.codename1.ui.VirtualKeyboard
-
This method initialize all the virtual keyboard special buttons.
- initToken(String, String) - Static method in class com.codename1.io.services.TwitterRESTService
-
Logs in to twitter as an application
- initTransition() - Method in class com.codename1.ui.animations.CommonTransitions
-
- initTransition() - Method in class com.codename1.ui.animations.Transition
-
Callback thats invoked before a transition begins, the source form may be null
for the first form in the application.
- initTransition() - Method in class com.sun.lwuit.animations.CommonTransitions
-
- initTransition() - Method in class com.sun.lwuit.animations.Transition
-
Callback thats invoked before a transition begins, the source form may be null
for the first form in the application.
- initUIEvent(String, boolean, boolean, AbstractView, int) - Method in interface org.w3c.dom.events.UIEvent
-
The initUIEvent
method is used to initialize the value of
a UIEvent
created through the DocumentEvent
interface.
- initVerify(PublicKey) - Method in class java.security.Signature
-
Initializes this object for verification.
- initVerify(Certificate) - Method in class java.security.Signature
-
Initializes this object for verification, using the public key from
the given certificate.
- initXlet(XletContext) - Method in interface javax.microedition.xlet.Xlet
-
- INNER_BORDERS_ALL - Static variable in class com.codename1.ui.table.Table
-
Constant denoting that inner borders should be drawn fully
- INNER_BORDERS_COLS - Static variable in class com.codename1.ui.table.Table
-
Constant denoting that only inner borders columns should be drawn
- INNER_BORDERS_NONE - Static variable in class com.codename1.ui.table.Table
-
Constant denoting that inner borders should not be drawn at all
- INNER_BORDERS_ROWS - Static variable in class com.codename1.ui.table.Table
-
Constant denoting that only inner borders rows should be drawn
- InnerActive - Class in com.codename1.ads
-
This is an Ad service implementation by InnerActive see:
http://console.inner-active.com/iamp/publisher/register?ref_id=affiliate_CodenameOne
- InnerActive() - Constructor for class com.codename1.ads.InnerActive
-
Empty constructor of the inner active ads service.
- INPUT_METHOD_FIRST - Static variable in class java.awt.event.InputMethodEvent
-
Marks the first integer id for the range of input method event ids.
- INPUT_METHOD_HIGHLIGHT - Static variable in class java.awt.font.TextAttribute
-
Attribute key for input method highlight styles.
- INPUT_METHOD_LAST - Static variable in class java.awt.event.InputMethodEvent
-
Marks the last integer id for the range of input method event ids.
- INPUT_METHOD_SEGMENT - Static variable in class java.text.AttributedCharacterIterator.Attribute
-
Attribute key for input method segments.
- INPUT_METHOD_TEXT_CHANGED - Static variable in class java.awt.event.InputMethodEvent
-
The event type indicating changed input method text.
- INPUT_METHOD_UNDERLINE - Static variable in class java.awt.font.TextAttribute
-
Attribute key for input method underlines.
- InputConnection - Interface in javax.microedition.io
-
- InputContext - Class in java.awt.im
-
Provides methods to control text input facilities such as input
methods and keyboard layouts.
- InputContext() - Constructor for class java.awt.im.InputContext
-
Constructs an InputContext.
- InputEvent - Class in java.awt.event
-
The root event class for all component-level input events.
- InputMethodEvent - Class in java.awt.event
-
Input method events contain information about text that is being
composed using an input method.
- InputMethodEvent(Component, int, long, AttributedCharacterIterator, int, TextHitInfo, TextHitInfo) - Constructor for class java.awt.event.InputMethodEvent
-
Constructs an InputMethodEvent
with the specified
source component, type, time, text, caret, and visiblePosition.
- InputMethodEvent(Component, int, AttributedCharacterIterator, int, TextHitInfo, TextHitInfo) - Constructor for class java.awt.event.InputMethodEvent
-
Constructs an InputMethodEvent
with the specified
source component, type, text, caret, and visiblePosition.
- InputMethodEvent(Component, int, TextHitInfo, TextHitInfo) - Constructor for class java.awt.event.InputMethodEvent
-
Constructs an InputMethodEvent
with the
specified source component, type, caret, and visiblePosition.
- InputMethodHighlight - Class in java.awt.im
-
An InputMethodHighlight is used to describe the highlight
attributes of text being composed.
- InputMethodHighlight(boolean, int) - Constructor for class java.awt.im.InputMethodHighlight
-
Constructs an input method highlight record.
- InputMethodHighlight(boolean, int, int) - Constructor for class java.awt.im.InputMethodHighlight
-
Constructs an input method highlight record.
- InputMethodListener - Interface in java.awt.event
-
The listener interface for receiving input method events.
- InputMethodRequests - Interface in java.awt.im
-
InputMethodRequests defines the requests that a text editing component
has to handle in order to work with input methods.
- inputMethodTextChanged(InputMethodEvent) - Method in interface java.awt.event.InputMethodListener
-
Invoked when the text entered through an input method has changed.
- InputMismatchException - Exception in java.util
-
Thrown by a Scanner
to indicate that the token
retrieved does not match the pattern for the expected type, or
that the token is out of range for the expected type.
- InputMismatchException() - Constructor for exception java.util.InputMismatchException
-
Constructs an InputMismatchException
with null
as its error message string.
- InputMismatchException(String) - Constructor for exception java.util.InputMismatchException
-
Constructs an InputMismatchException
, saving a reference
to the error message string s for later retrieval by the
getMessage method.
- InputSource - Class in org.xml.sax
-
A single input source for an XML entity.
- InputSource() - Constructor for class org.xml.sax.InputSource
-
Zero-argument default constructor.
- InputSource(String) - Constructor for class org.xml.sax.InputSource
-
Create a new input source with a system identifier.
- InputSource(InputStream) - Constructor for class org.xml.sax.InputSource
-
Create a new input source with a byte stream.
- InputSource(Reader) - Constructor for class org.xml.sax.InputSource
-
Create a new input source with a character stream.
- InputStream - Class in java.io
-
This abstract class is the superclass of all classes representing
an input stream of bytes.
- InputStream() - Constructor for class java.io.InputStream
-
- InputStreamReader - Class in java.io
-
An InputStreamReader is a bridge from byte streams to character streams: It
reads bytes and decodes them into characters using a specified
charset
.
- InputStreamReader(InputStream) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the default charset.
- InputStreamReader(InputStream, String) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the named charset.
- InputStreamReader(InputStream, Charset) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the given charset.
- InputStreamReader(InputStream, CharsetDecoder) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the given charset decoder.
- InputSubset - Class in java.awt.im
-
Defines additional Unicode subsets for use by input methods.
- INSCRIPTIONAL_PAHLAVI - Static variable in class java.lang.Character.UnicodeBlock
-
Constant for the "Inscriptional Pahlavi" Unicode character block.
- INSCRIPTIONAL_PARTHIAN - Static variable in class java.lang.Character.UnicodeBlock
-
Constant for the "Inscriptional Parthian" Unicode character block.
- insert(int, boolean) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified boolean
value
at the specified offset
.
- insert(int, char) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified char
value at
the specified offset
.
- insert(int, int) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified int
value at
the specified offset
.
- insert(int, long) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified long
value at
the specified offset
.
- insert(int, float) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified float
value at
the specified offset
.
- insert(int, double) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified double
value
at the specified offset
.
- insert(int, Object) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified Object
at the
specified offset
.
- insert(int, String) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the specified string at the specified offset
.
- insert(int, char[]) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified char[]
at the
specified offset
.
- insert(int, char[], int, int) - Method in class com.codename1.util.CStringBuilder
-
Deprecated.
Inserts the string representation of the specified subsequence of the
char[]
at the specified offset
.
- insert(int, char[], int, int) - Method in class java.lang.StringBuffer
-
- insert(int, Object) - Method in class java.lang.StringBuffer
-
- insert(int, String) - Method in class java.lang.StringBuffer
-
- insert(int, char[]) - Method in class java.lang.StringBuffer
-
- insert(int, CharSequence) - Method in class java.lang.StringBuffer
-
- insert(int, CharSequence, int, int) - Method in class java.lang.StringBuffer
-
- insert(int, boolean) - Method in class java.lang.StringBuffer
-
- insert(int, char) - Method in class java.lang.StringBuffer
-
- insert(int, int) - Method in class java.lang.StringBuffer
-
- insert(int, long) - Method in class java.lang.StringBuffer
-
- insert(int, float) - Method in class java.lang.StringBuffer
-
- insert(int, double) - Method in class java.lang.StringBuffer
-
- insert(int, char[], int, int) - Method in class java.lang.StringBuilder
-
- insert(int, Object) - Method in class java.lang.StringBuilder
-
- insert(int, String) - Method in class java.lang.StringBuilder
-
- insert(int, char[]) - Method in class java.lang.StringBuilder
-
- insert(int, CharSequence) - Method in class java.lang.StringBuilder
-
- insert(int, CharSequence, int, int) - Method in class java.lang.StringBuilder
-
- insert(int, boolean) - Method in class java.lang.StringBuilder
-
- insert(int, char) - Method in class java.lang.StringBuilder
-
- insert(int, int) - Method in class java.lang.StringBuilder
-
- insert(int, long) - Method in class java.lang.StringBuilder
-
- insert(int, float) - Method in class java.lang.StringBuilder
-
- insert(int, double) - Method in class java.lang.StringBuilder
-
- INSERT_CHAR - Static variable in class com.codename1.ui.VirtualKeyboard
-
- insertArguments(MethodHandle, int, Object...) - Static method in class java.lang.invoke.MethodHandles
-
Provides a target method handle with one or more bound arguments
in advance of the method handle's invocation.
- insertBefore(Node, Node) - Method in interface org.w3c.dom.Node
-
Inserts the node newChild
before the existing child node
refChild
.
- insertChars(String) - Method in class com.codename1.ui.TextField
-
This method is responsible for adding a character into the field and is
the focal point for all input.
- insertChars(String) - Method in class com.sun.lwuit.TextField
-
This method is responsible for adding a character into the field and is
the focal point for all input.
- insertChildAt(Element, int) - Method in class com.codename1.xml.Element
-
Inserts the given child at the specified index
- insertData(int, String) - Method in interface org.w3c.dom.CharacterData
-
Insert a string at the specified 16-bit unit offset.
- insertElementAt(E, int) - Method in class java.util.Vector
-
Inserts the specified object as a component in this vector at the
specified index
.
- insertParameterTypes(int, Class<?>...) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with additional parameter types.
- insertParameterTypes(int, List<Class<?>>) - Method in class java.lang.invoke.MethodType
-
Finds or creates a method type with additional parameter types.
- insertProviderAt(Provider, int) - Static method in class java.security.Security
-
Adds a new provider, at a specified position.
- insertRow() - Method in interface java.sql.ResultSet
-
Inserts the contents of the insert row into this
ResultSet
object and into the database.
- insertsAreDetected(int) - Method in interface java.sql.DatabaseMetaData
-
Retrieves whether or not a visible row insert can be detected
by calling the method ResultSet.rowInserted
.
- insertTab(String, Image, Component, int) - Method in class com.codename1.ui.Tabs
-
Inserts a component
, at index
,
represented by a title
and/or icon
,
either of which may be null
.
- insertTab(Button, Component, int) - Method in class com.codename1.ui.Tabs
-
- insertTab(String, Image, Component, int) - Method in class com.sun.lwuit.TabbedPane
-
Inserts a component
, at index
,
represented by a title
and/or icon
,
either of which may be null
.
- insets - Variable in class com.codename1.ui.layouts.GridBagConstraints
-
- Insets - Class in com.codename1.ui.layouts
-
Port of Insets from Harmony for the use of the GridBag code
- Insets(int, int, int, int) - Constructor for class com.codename1.ui.layouts.Insets
-
- install(Log) - Static method in class com.codename1.io.Log
-
Installs a log subclass that can replace the logging destination/behavior
- install(TextField, List) - Static method in class com.codename1.ui.list.FilterProxyListModel
-
Installs a search field on a list making sure the filter method is invoked properly
- install(TextField, ContainerList) - Static method in class com.codename1.ui.list.FilterProxyListModel
-
Installs a search field on a list making sure the filter method is invoked properly
- installBuiltinSound(String, InputStream) - Method in class com.codename1.ui.Display
-
Installs a replacement sound as the builtin sound responsible for the given
sound identifier (this will override the system sound if such a sound exists).
- installCommands(Command, Command) - Method in class com.codename1.ui.TextField
-
Installs the clear and t9 commands onto the parent form, this method can
be overriden to provide device specific placement for these commands
- installCommands(Command, Command) - Method in class com.sun.lwuit.TextField
-
Installs the clear and t9 commands onto the parent form, this method can
be overriden to provide device specific placement for these commands
- installDefaultPainter(Style) - Method in class com.codename1.ui.Component
-
Allows subclasses to create their own custom style types and install the background painter into them
- installedProviders() - Static method in class java.nio.file.spi.FileSystemProvider
-
Returns a list of the installed file system providers.
- installGlassPane(Form, Painter) - Static method in class com.codename1.ui.painter.PainterChain
-
Installs a glass pane on the given form making sure to make it a painter
chain only if required by existing painter
- installGlassPane(Form, Painter) - Static method in class com.sun.lwuit.painter.PainterChain
-
Installs a glass pane on the given form making sure to make it a painter
chain only if required by existing painter
- installMenuBar() - Method in class com.codename1.ui.MenuBar
-
Adds the MenuBar on the parent Form
- installMenuBar() - Method in class com.codename1.ui.SideMenuBar
-
- installNativeTheme() - Method in class com.codename1.ui.Display
-
Installs the native theme, this is only applicable if hasNativeTheme() returned true.
- INSTANCE - Static variable in class java.time.chrono.HijrahChronology
-
Singleton instance of the Islamic Umm Al-Qura calendar of Saudi Arabia.
- INSTANCE - Static variable in class java.time.chrono.IsoChronology
-
Singleton instance of the ISO chronology.
- INSTANCE - Static variable in class java.time.chrono.JapaneseChronology
-
Singleton instance for Japanese chronology.
- INSTANCE - Static variable in class java.time.chrono.MinguoChronology
-
Singleton instance for the Minguo chronology.
- INSTANCE - Static variable in class java.time.chrono.ThaiBuddhistChronology
-
Singleton instance of the Buddhist chronology.
- instanceFollowRedirects - Variable in class java.net.HttpURLConnection
-
If true
, the protocol will automatically follow redirects.
- instanceofByteArray(Object) - Static method in class com.codename1.io.Util
-
- instanceofDoubleArray(Object) - Static method in class com.codename1.io.Util
-
- instanceofFloatArray(Object) - Static method in class com.codename1.io.Util
-
- instanceofIntArray(Object) - Static method in class com.codename1.io.Util
-
- instanceofLongArray(Object) - Static method in class com.codename1.io.Util
-
- instanceofObjArray(Object) - Static method in class com.codename1.io.Util
-
- instanceofShortArray(Object) - Static method in class com.codename1.io.Util
-
- instant() - Method in class java.time.Clock
-
Gets the current instant of the clock.
- Instant - Class in java.time
-
An instantaneous point on the time-line.
- InstantiationError - Error in java.lang
-
Thrown when an application tries to use the Java new
construct to instantiate an abstract class or an interface.
- InstantiationError() - Constructor for error java.lang.InstantiationError
-
Constructs an InstantiationError
with no detail message.
- InstantiationError(String) - Constructor for error java.lang.InstantiationError
-
Constructs an InstantiationError
with the specified
detail message.
- InstantiationException - Exception in java.lang
-
Thrown when an application tries to create an instance of a class
using the newInstance
method in class
Class
, but the specified class object cannot be
instantiated.
- InstantiationException() - Constructor for exception java.lang.InstantiationException
-
Constructs an InstantiationException
with no detail message.
- InstantiationException(String) - Constructor for exception java.lang.InstantiationException
-
Constructs an InstantiationException
with the
specified detail message.
- IntBinaryOperator - Interface in java.util.function
-
Represents an operation upon two int
-valued operands and producing an
int
-valued result.
- intBitsToFloat(int) - Static method in class java.lang.Float
-
Returns the float
value corresponding to a given
bit representation.
- IntConsumer - Interface in java.util.function
-
Represents an operation that accepts a single int
-valued argument and
returns no result.
- Integer - Class in java.lang
-
The Integer
class wraps a value of the primitive type
int
in an object.
- Integer(int) - Constructor for class java.lang.Integer
-
Constructs a newly allocated Integer
object that
represents the specified int
value.
- Integer(String) - Constructor for class java.lang.Integer
-
Constructs a newly allocated Integer
object that
represents the int
value indicated by the
String
parameter.
- INTEGER - Static variable in class java.sql.Types
-
The constant in the Java programming language, sometimes referred
to as a type code, that identifies the generic SQL type
INTEGER
.
- INTEGER - Static variable in class java.text.NumberFormat.Field
-
Constant identifying the integer field.
- INTEGER_FIELD - Static variable in class java.text.NumberFormat
-
Field constant used to construct a FieldPosition object.
- interestOps() - Method in class java.nio.channels.SelectionKey
-
Retrieves this key's interest set.
- interestOps(int) - Method in class java.nio.channels.SelectionKey
-
Sets this key's interest set to the given value.
- INTERFACE - Static variable in class java.lang.reflect.Modifier
-
The int
value representing the interface
modifier.
- InterfaceAddress - Class in java.net
-
This class represents a Network Interface address.
- interfaceModifiers() - Static method in class java.lang.reflect.Modifier
-
Return an int
value OR-ing together the source language
modifiers that can be applied to an interface.
- intern() - Method in class java.lang.String
-
intern interns this String.
- internalEntityDecl(String, String) - Method in interface org.xml.sax.ext.DeclHandler
-
Report an internal entity declaration.
- internalEntityDecl(String, String) - Method in class org.xml.sax.ext.DefaultHandler2
-
- InternalError - Error in java.lang
-
Thrown to indicate some unexpected internal error has occurred in
the Java Virtual Machine.
- InternalError() - Constructor for error java.lang.InternalError
-
Constructs an InternalError
with no detail message.
- InternalError(String) - Constructor for error java.lang.InternalError
-
Constructs an InternalError
with the specified
detail message.
- InternalError(String, Throwable) - Constructor for error java.lang.InternalError
-
Constructs an InternalError
with the specified detail
message and cause.
- InternalError(Throwable) - Constructor for error java.lang.InternalError
-
Constructs an InternalError
with the specified cause
and a detail message of (cause==null ? null :
cause.toString())
(which typically contains the class and
detail message of cause
).
- internalGet(int) - Method in class java.util.Calendar
-
Returns the value of the given calendar field.
- internalize(int, DataInputStream) - Method in class com.codename1.cloud.CloudObject
-
- internalize(int, DataInputStream) - Method in class com.codename1.io.Cookie
-
- internalize(int, DataInputStream) - Method in interface com.codename1.io.Externalizable
-
Loads the object from the input stream and allows deserialization
- internalize(int, DataInputStream) - Method in class com.codename1.io.services.CachedData
-
- interrupt() - Method in class java.lang.Thread
-
Interrupts this thread.
- interrupt() - Method in class java.lang.ThreadGroup
-
Interrupts all threads in this thread group.
- interrupted() - Static method in class java.lang.Thread
-
Tests whether the current thread has been interrupted.
- InterruptedException - Exception in java.lang
-
Thrown when a thread is waiting, sleeping, or otherwise occupied,
and the thread is interrupted, either before or during the activity.
- InterruptedException() - Constructor for exception java.lang.InterruptedException
-
Constructs an InterruptedException
with no detail message.
- InterruptedException(String) - Constructor for exception java.lang.InterruptedException
-
Constructs an InterruptedException
with the
specified detail message.
- InterruptedIOException - Exception in java.io
-
Signals that an I/O operation has been interrupted.
- InterruptedIOException() - Constructor for exception java.io.InterruptedIOException
-
Constructs an InterruptedIOException
with
null
as its error detail message.
- InterruptedIOException(String) - Constructor for exception java.io.InterruptedIOException
-
Constructs an InterruptedIOException
with the
specified detail message.
- InterruptibleChannel - Interface in java.nio.channels
-
A channel that can be asynchronously closed and interrupted.
- intersection(int, int, int, int) - Method in class com.codename1.ui.geom.Rectangle
-
Returns a rectangle that intersects the given rectangle with this rectangle
- intersection(int, int, int, int, int, int, int, int, Rectangle) - Static method in class com.codename1.ui.geom.Rectangle
-
Returns a rectangle that intersects the given rectangle with this rectangle
- intersection(Rectangle) - Method in class com.codename1.ui.geom.Rectangle
-
Returns a rectangle that intersects the given rectangle with this rectangle
- intersection(int, int, int, int) - Method in class com.sun.lwuit.geom.Rectangle
-
Returns a rectangle that intersects the given rectangle with this rectangle
- intersection(Rectangle) - Method in class com.sun.lwuit.geom.Rectangle
-
Returns a rectangle that intersects the given rectangle with this rectangle
- intersects(int, int, int, int) - Method in class com.codename1.ui.geom.Rectangle
-
Determines whether or not this Rectangle and the specified Rectangle
location (x, y) with the specified dimensions (width, height),
intersect.
- intersects(Rectangle) - Method in class com.codename1.ui.geom.Rectangle
-
Determines whether or not this Rectangle and the specified Rectangle
location (x, y) with the specified dimensions (width, height),
intersect.
- intersects(int, int, int, int, int, int, int, int) - Static method in class com.codename1.ui.geom.Rectangle
-
Helper method allowing us to determine if two coordinate sets intersect.
- intersects(int, int, int, int) - Method in class com.sun.lwuit.geom.Rectangle
-
Determines whether or not this Rectangle and the specified Rectangle
location (x, y) with the specified dimensions (width, height),
intersect.
- intersects(Rectangle) - Method in class com.sun.lwuit.geom.Rectangle
-
Determines whether or not this Rectangle and the specified Rectangle
location (x, y) with the specified dimensions (width, height),
intersect.
- intersects(int, int, int, int, int, int, int, int) - Static method in class com.sun.lwuit.geom.Rectangle
-
Helper method allowing us to determine if two coordinate sets intersect.
- intersects(BitSet) - Method in class java.util.BitSet
-
Returns true if the specified BitSet
has any bits set to
true
that are also set to true
in this BitSet
.
- IntFunction<R> - Interface in java.util.function
-
Represents a function that accepts an int-valued argument and produces a
result.
- IntPredicate - Interface in java.util.function
-
Represents a predicate (boolean-valued function) of one int
-valued
argument.
- ints(long) - Method in class java.util.concurrent.ThreadLocalRandom
-
Returns a stream producing the given streamSize
number of
pseudorandom int
values.
- ints() - Method in class java.util.concurrent.ThreadLocalRandom
-
Returns an effectively unlimited stream of pseudorandom int
values.
- ints(long, int, int) - Method in class java.util.concurrent.ThreadLocalRandom
-
Returns a stream producing the given streamSize
number
of pseudorandom int
values, each conforming to the given
origin (inclusive) and bound (exclusive).
- ints(int, int) - Method in class java.util.concurrent.ThreadLocalRandom
-
Returns an effectively unlimited stream of pseudorandom int
values, each conforming to the given origin (inclusive) and bound
(exclusive).
- ints(long) - Method in class java.util.Random
-
Returns a stream producing the given streamSize
number of
pseudorandom int
values.
- ints() - Method in class java.util.Random
-
Returns an effectively unlimited stream of pseudorandom int
values.
- ints(long, int, int) - Method in class java.util.Random
-
Returns a stream producing the given streamSize
number
of pseudorandom int
values, each conforming to the given
origin (inclusive) and bound (exclusive).
- ints(int, int) - Method in class java.util.Random
-
Returns an effectively unlimited stream of pseudorandom int
values, each conforming to the given origin (inclusive) and bound
(exclusive).
- ints(long) - Method in class java.util.SplittableRandom
-
Returns a stream producing the given streamSize
number
of pseudorandom int
values from this generator and/or
one split from it.
- ints() - Method in class java.util.SplittableRandom
-
Returns an effectively unlimited stream of pseudorandom int
values from this generator and/or one split from it.
- ints(long, int, int) - Method in class java.util.SplittableRandom
-
Returns a stream producing the given streamSize
number
of pseudorandom int
values from this generator and/or one split
from it; each value conforms to the given origin (inclusive) and bound
(exclusive).
- ints(int, int) - Method in class java.util.SplittableRandom
-
Returns an effectively unlimited stream of pseudorandom int
values from this generator and/or one split from it; each value
conforms to the given origin (inclusive) and bound (exclusive).
- IntStream - Interface in java.util.stream
-
A sequence of primitive int-valued elements supporting sequential and parallel
aggregate operations.
- intStream(Spliterator.OfInt, boolean) - Static method in class java.util.stream.StreamSupport
-
Creates a new sequential or parallel IntStream
from a
Spliterator.OfInt
.
- intStream(Supplier<? extends Spliterator.OfInt>, int, boolean) - Static method in class java.util.stream.StreamSupport
-
Creates a new sequential or parallel IntStream
from a
Supplier
of Spliterator.OfInt
.
- IntStream.Builder - Interface in java.util.stream
-
A mutable builder for an IntStream
.
- IntSummaryStatistics - Class in java.util
-
A state object for collecting statistics such as count, min, max, sum, and
average.
- IntSummaryStatistics() - Constructor for class java.util.IntSummaryStatistics
-
Construct an empty instance with zero count, zero sum,
Integer.MAX_VALUE
min, Integer.MIN_VALUE
max and zero
average.
- IntSupplier - Interface in java.util.function
-
Represents a supplier of int
-valued results.
- IntToDoubleFunction - Interface in java.util.function
-
Represents a function that accepts an int-valued argument and produces a
double-valued result.
- IntToLongFunction - Interface in java.util.function
-
Represents a function that accepts an int-valued argument and produces a
long-valued result.
- IntUnaryOperator - Interface in java.util.function
-
Represents an operation on a single int
-valued operand that produces
an int
-valued result.
- intValue() - Method in class java.lang.Byte
-
Returns the value of this Byte
as an int
after
a widening primitive conversion.
- intValue() - Method in class java.lang.Double
-
Returns the value of this Double
as an int
after a narrowing primitive conversion.
- intValue() - Method in class java.lang.Float
-
Returns the value of this Float
as an int
after
a narrowing primitive conversion.
- intValue() - Method in class java.lang.Integer
-
Returns the value of this Integer
as an
int
.
- intValue() - Method in class java.lang.Long
-
Returns the value of this Long
as an int
after
a narrowing primitive conversion.
- intValue() - Method in class java.lang.Number
-
Returns the value of the specified number as an int
,
which may involve rounding or truncation.
- intValue() - Method in class java.lang.Short
-
Returns the value of this Short
as an int
after
a widening primitive conversion.
- intValue() - Method in class java.math.BigDecimal
-
Converts this BigDecimal
to an int
.
- intValue() - Method in class java.math.BigInteger
-
Converts this BigInteger to an int
.
- intValue() - Method in class java.util.concurrent.atomic.AtomicInteger
-
Returns the value of this AtomicInteger
as an int
.
- intValue() - Method in class java.util.concurrent.atomic.AtomicLong
-
Returns the value of this AtomicLong
as an int
after a narrowing primitive conversion.
- intValue() - Method in class java.util.concurrent.atomic.DoubleAccumulator
-
Returns the
current value as an
int
after a narrowing primitive conversion.
- intValue() - Method in class java.util.concurrent.atomic.DoubleAdder
-
- intValue() - Method in class java.util.concurrent.atomic.LongAccumulator
-
Returns the
current value as an
int
after a narrowing primitive conversion.
- intValue() - Method in class java.util.concurrent.atomic.LongAdder
-
Returns the
LongAdder.sum()
as an
int
after a narrowing
primitive conversion.
- intValue() - Method in class java.util.logging.Level
-
Get the integer value for this level.
- intValueExact() - Method in class java.math.BigDecimal
-
Converts this BigDecimal
to an int
, checking
for lost information.
- intValueExact() - Method in class java.math.BigInteger
-
Converts this BigInteger
to an int
, checking
for lost information.
- INUSE_ATTRIBUTE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to add an attribute that is already in use
elsewhere.
- INVALID_ACCESS_ERR - Static variable in exception org.w3c.dom.DOMException
-
If a parameter or an operation is not supported by the underlying
object.
- INVALID_CHARACTER_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an invalid or illegal character is specified, such as in an XML name.
- INVALID_MODIFICATION_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to modify the type of the underlying object.
- INVALID_STATE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to use an object that is not, or is no longer,
usable.
- InvalidAlgorithmParameterException - Exception in java.security
-
This is the exception for invalid or inappropriate algorithm parameters.
- InvalidAlgorithmParameterException() - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Constructs an InvalidAlgorithmParameterException with no detail
message.
- InvalidAlgorithmParameterException(String) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Constructs an InvalidAlgorithmParameterException with the specified
detail message.
- InvalidAlgorithmParameterException(String, Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Creates a InvalidAlgorithmParameterException
with the
specified detail message and cause.
- InvalidAlgorithmParameterException(Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Creates a InvalidAlgorithmParameterException
with the
specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- invalidate() - Method in class com.codename1.ui.Container
-
Same as setShouldCalcPreferredSize(true) but made accessible for
layout managers
- invalidate() - Method in class com.codename1.ui.PeerComponent
-
Updates the size of the component from the native widget
- invalidate() - Method in class com.sun.lwuit.Container
-
Same as setShouldCalcPreferredSize(true) but made accessible for
layout managers
- invalidate() - Method in class java.awt.Component
-
Invalidates this component.
- invalidate() - Method in class java.awt.Container
-
Invalidates the container.
- invalidate() - Method in interface javax.net.ssl.SSLSession
-
Invalidates the session.
- invalidateAll(SwitchPoint[]) - Static method in class java.lang.invoke.SwitchPoint
-
Sets all of the given switch points into the invalid state.
- invalidateLayout(Container) - Method in class com.codename1.ui.layouts.GridBagLayout
-
- InvalidClassException - Exception in java.io
-
Thrown when the Serialization runtime detects one of the following
problems with a Class.
- InvalidClassException(String) - Constructor for exception java.io.InvalidClassException
-
Report an InvalidClassException for the reason specified.
- InvalidClassException(String, String) - Constructor for exception java.io.InvalidClassException
-
Constructs an InvalidClassException object.
- InvalidKeyException - Exception in java.security
-
This is the exception for invalid Keys (invalid encoding, wrong
length, uninitialized, etc).
- InvalidKeyException() - Constructor for exception java.security.InvalidKeyException
-
Constructs an InvalidKeyException with no detail message.
- InvalidKeyException(String) - Constructor for exception java.security.InvalidKeyException
-
Constructs an InvalidKeyException with the specified detail
message.
- InvalidKeyException(String, Throwable) - Constructor for exception java.security.InvalidKeyException
-
Creates a InvalidKeyException
with the specified
detail message and cause.
- InvalidKeyException(Throwable) - Constructor for exception java.security.InvalidKeyException
-
Creates a InvalidKeyException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- InvalidKeySpecException - Exception in java.security.spec
-
This is the exception for invalid key specifications.
- InvalidKeySpecException() - Constructor for exception java.security.spec.InvalidKeySpecException
-
Constructs an InvalidKeySpecException with no detail message.
- InvalidKeySpecException(String) - Constructor for exception java.security.spec.InvalidKeySpecException
-
Constructs an InvalidKeySpecException with the specified detail
message.
- InvalidKeySpecException(String, Throwable) - Constructor for exception java.security.spec.InvalidKeySpecException
-
Creates a InvalidKeySpecException
with the specified
detail message and cause.
- InvalidKeySpecException(Throwable) - Constructor for exception java.security.spec.InvalidKeySpecException
-
Creates a InvalidKeySpecException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- InvalidObjectException - Exception in java.io
-
Indicates that one or more deserialized objects failed validation
tests.
- InvalidObjectException(String) - Constructor for exception java.io.InvalidObjectException
-
Constructs an InvalidObjectException
.
- InvalidParameterException - Exception in java.security
-
This exception, designed for use by the JCA/JCE engine classes,
is thrown when an invalid parameter is passed
to a method.
- InvalidParameterException() - Constructor for exception java.security.InvalidParameterException
-
Constructs an InvalidParameterException with no detail message.
- InvalidParameterException(String) - Constructor for exception java.security.InvalidParameterException
-
Constructs an InvalidParameterException with the specified
detail message.
- InvalidParameterSpecException - Exception in java.security.spec
-
This is the exception for invalid parameter specifications.
- InvalidParameterSpecException() - Constructor for exception java.security.spec.InvalidParameterSpecException
-
Constructs an InvalidParameterSpecException with no detail message.
- InvalidParameterSpecException(String) - Constructor for exception java.security.spec.InvalidParameterSpecException
-
Constructs an InvalidParameterSpecException with the specified detail
message.
- InvalidPathException - Exception in java.nio.file
-
Unchecked exception thrown when path string cannot be converted into a
Path
because the path string contains invalid characters, or
the path string is invalid for other file system specific reasons.
- InvalidPathException(String, String, int) - Constructor for exception java.nio.file.InvalidPathException
-
Constructs an instance from the given input string, reason, and error
index.
- InvalidPathException(String, String) - Constructor for exception java.nio.file.InvalidPathException
-
Constructs an instance from the given input string and reason.
- InvalidPropertiesFormatException - Exception in java.util
-
Thrown to indicate that an operation could not complete because
the input did not conform to the appropriate XML document type
for a collection of properties, as per the
Properties
specification.
- InvalidPropertiesFormatException(Throwable) - Constructor for exception java.util.InvalidPropertiesFormatException
-
Constructs an InvalidPropertiesFormatException with the specified
cause.
- InvalidPropertiesFormatException(String) - Constructor for exception java.util.InvalidPropertiesFormatException
-
Constructs an InvalidPropertiesFormatException with the specified
detail message.
- InvalidTransactionException - Exception in javax.transaction
-
This exception indicates that the request carried an invalid transaction
context.
- InvalidTransactionException() - Constructor for exception javax.transaction.InvalidTransactionException
-
- InvalidTransactionException(String) - Constructor for exception javax.transaction.InvalidTransactionException
-
- inverseMercator(double, double) - Static method in class com.codename1.maps.Mercator
-
Create a unprojected Coord(Latitude, Longitude) from the projected Coord
- Invocable - Interface in javax.script
-
The optional interface implemented by ScriptEngines whose methods allow the invocation of
procedures in scripts that have previously been executed.
- INVOCATION_DEFAULT - Static variable in class java.awt.event.InvocationEvent
-
The default id for all InvocationEvents.
- INVOCATION_FIRST - Static variable in class java.awt.event.InvocationEvent
-
Marks the first integer id for the range of invocation event ids.
- INVOCATION_LAST - Static variable in class java.awt.event.InvocationEvent
-
Marks the last integer id for the range of invocation event ids.
- InvocationEvent - Class in java.awt.event
-
An event which executes the run()
method on a Runnable
when dispatched by the AWT event dispatcher thread.
- InvocationEvent(Object, Runnable) - Constructor for class java.awt.event.InvocationEvent
-
Constructs an InvocationEvent
with the specified
source which will execute the runnable's run
method when dispatched.
- InvocationEvent(Object, Runnable, Object, boolean) - Constructor for class java.awt.event.InvocationEvent
-
Constructs an InvocationEvent
with the specified
source which will execute the runnable's run
method when dispatched.
- InvocationEvent(Object, int, Runnable, Object, boolean) - Constructor for class java.awt.event.InvocationEvent
-
Constructs an InvocationEvent
with the specified
source and ID which will execute the runnable's run
method when dispatched.
- InvocationHandler - Interface in java.lang.reflect
-
InvocationHandler
is the interface implemented by
the invocation handler of a proxy instance.
- InvocationTargetException - Exception in java.lang.reflect
-
InvocationTargetException is a checked exception that wraps
an exception thrown by an invoked method or constructor.
- InvocationTargetException() - Constructor for exception java.lang.reflect.InvocationTargetException
-
Constructs an InvocationTargetException
with
null
as the target exception.
- InvocationTargetException(Throwable) - Constructor for exception java.lang.reflect.InvocationTargetException
-
Constructs a InvocationTargetException with a target exception.
- InvocationTargetException(Throwable, String) - Constructor for exception java.lang.reflect.InvocationTargetException
-
Constructs a InvocationTargetException with a target exception
and a detail message.
- invoke(Object...) - Method in class java.lang.invoke.MethodHandle
-
Invokes the method handle, allowing any caller type descriptor,
and optionally performing conversions on arguments and return values.
- invoke(Object, Method, Object[]) - Method in interface java.lang.reflect.InvocationHandler
-
Processes a method invocation on a proxy instance and returns
the result.
- invoke(Object, Object...) - Method in class java.lang.reflect.Method
-
Invokes the underlying method represented by this Method
object, on the specified object with the specified parameters.
- invoke(Object, Method, Object[]) - Method in class java.rmi.server.RemoteObjectInvocationHandler
-
Processes a method invocation made on the encapsulating
proxy instance, proxy
, and returns the result.
- invoke(Remote, Method, Object[], long) - Method in interface java.rmi.server.RemoteRef
-
Invoke a method.
- invoke(RemoteCall) - Method in interface java.rmi.server.RemoteRef
-
- invoke(ForkJoinTask<T>) - Method in class java.util.concurrent.ForkJoinPool
-
Performs the given task, returning its result upon completion.
- invoke() - Method in class java.util.concurrent.ForkJoinTask
-
Commences performing this task, awaits its completion if
necessary, and returns its result, or throws an (unchecked)
RuntimeException
or Error
if the underlying
computation did so.
- invokeAll(Collection<? extends Callable<T>>) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAll(Collection<? extends Callable<T>>, long, TimeUnit) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAll(Collection<? extends Callable<T>>) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning a list of Futures holding
their status and results when all complete.
- invokeAll(Collection<? extends Callable<T>>, long, TimeUnit) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning a list of Futures holding
their status and results
when all complete or the timeout expires, whichever happens first.
- invokeAll(Collection<? extends Callable<T>>) - Method in class java.util.concurrent.ForkJoinPool
-
- invokeAll(ForkJoinTask<?>, ForkJoinTask<?>) - Static method in class java.util.concurrent.ForkJoinTask
-
Forks the given tasks, returning when isDone
holds for
each task or an (unchecked) exception is encountered, in which
case the exception is rethrown.
- invokeAll(ForkJoinTask<?>...) - Static method in class java.util.concurrent.ForkJoinTask
-
Forks the given tasks, returning when isDone
holds for
each task or an (unchecked) exception is encountered, in which
case the exception is rethrown.
- invokeAll(Collection<T>) - Static method in class java.util.concurrent.ForkJoinTask
-
Forks all tasks in the specified collection, returning when
isDone
holds for each task or an (unchecked) exception
is encountered, in which case the exception is rethrown.
- invokeAndBlock(Runnable, boolean) - Method in class com.codename1.ui.Display
-
Invokes runnable and blocks the current thread, if the current thread is the
edt it will still be blocked however a separate thread would be launched
to perform the duties of the EDT while it is blocked.
- invokeAndBlock(Runnable) - Method in class com.codename1.ui.Display
-
Invokes runnable and blocks the current thread, if the current thread is the
edt it will still be blocked however a separate thread would be launched
to perform the duties of the EDT while it is blocked.
- invokeAndBlock(Runnable) - Method in class com.sun.lwuit.Display
-
Invokes runnable and blocks the current thread, if the current thread is the
edt it will still be blocked however a separate thread would be launched
to perform the duties of the EDT while it is blocked.
- invokeAny(Collection<? extends Callable<T>>) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAny(Collection<? extends Callable<T>>, long, TimeUnit) - Method in class java.util.concurrent.AbstractExecutorService
-
- invokeAny(Collection<? extends Callable<T>>) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning the result
of one that has completed successfully (i.e., without throwing
an exception), if any do.
- invokeAny(Collection<? extends Callable<T>>, long, TimeUnit) - Method in interface java.util.concurrent.ExecutorService
-
Executes the given tasks, returning the result
of one that has completed successfully (i.e., without throwing
an exception), if any do before the given timeout elapses.
- invokeExact(Object...) - Method in class java.lang.invoke.MethodHandle
-
Invokes the method handle, allowing any caller type descriptor, but requiring an exact type match.
- invokeFunction(String, Object...) - Method in interface javax.script.Invocable
-
Used to call top-level procedures and functions defined in scripts.
- invokeMethod(Object, String, Object...) - Method in interface javax.script.Invocable
-
Calls a method on a script object compiled during a previous script execution,
which is retained in the state of the ScriptEngine
.
- invoker(MethodType) - Static method in class java.lang.invoke.MethodHandles
-
Produces a special
invoker method handle which can be used to
invoke any method handle compatible with the given type, as if by
invoke
.
- invokeWithArguments(Object...) - Method in class java.lang.invoke.MethodHandle
-
Performs a variable arity invocation, passing the arguments in the given list
to the method handle, as if via an inexact
invoke
from a call site
which mentions only the type
Object
, and whose arity is the length
of the argument list.
- invokeWithArguments(List<?>) - Method in class java.lang.invoke.MethodHandle
-
Performs a variable arity invocation, passing the arguments in the given array
to the method handle, as if via an inexact
invoke
from a call site
which mentions only the type
Object
, and whose arity is the length
of the argument array.
- IOCallback - Interface in com.codename1.ui.html
-
This interface is implemented by HTMLComponent and ResourceThread (The two classes using the AsyncDocumentRequestHandler)
- IOError - Error in java.io
-
Thrown when a serious I/O error has occurred.
- IOError(Throwable) - Constructor for error java.io.IOError
-
Constructs a new instance of IOError with the specified cause.
- IOException - Exception in java.io
-
Signals that an I/O exception of some sort has occurred.
- IOException() - Constructor for exception java.io.IOException
-
Constructs an IOException
with null
as its error detail message.
- IOException(String) - Constructor for exception java.io.IOException
-
Constructs an IOException
with the specified detail message.
- IOException(String, Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException
with the specified detail message
and cause.
- IOException(Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException
with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of cause
).
- ioException() - Method in class java.util.Formatter
-
Returns the
IOException
last thrown by this formatter's
Appendable
.
- ioException() - Method in class java.util.Scanner
-
Returns the IOException
last thrown by this
Scanner
's underlying Readable
.
- IOProgressListener - Interface in com.codename1.io
-
Callback for IO updates from a buffered input/output stream
- ioStreamUpdate(Object, int) - Method in class com.codename1.io.ConnectionRequest
-
- ioStreamUpdate(Object, int) - Method in interface com.codename1.io.IOProgressListener
-
Indicates the number of bytes that were read/written to/from the source stream
- IP_MULTICAST_IF - Static variable in interface java.net.SocketOptions
-
Set which outgoing interface on which to send multicast packets.
- IP_MULTICAST_IF - Static variable in class java.net.StandardSocketOptions
-
The network interface for Internet Protocol (IP) multicast datagrams.
- IP_MULTICAST_IF2 - Static variable in interface java.net.SocketOptions
-
Same as above.
- IP_MULTICAST_LOOP - Static variable in interface java.net.SocketOptions
-
This option enables or disables local loopback of multicast datagrams.
- IP_MULTICAST_LOOP - Static variable in class java.net.StandardSocketOptions
-
Loopback for Internet Protocol (IP) multicast datagrams.
- IP_MULTICAST_TTL - Static variable in class java.net.StandardSocketOptions
-
The time-to-live for Internet Protocol (IP) multicast datagrams.
- IP_TOS - Static variable in interface java.net.SocketOptions
-
This option sets the type-of-service or traffic class field
in the IP header for a TCP or UDP socket.
- IP_TOS - Static variable in class java.net.StandardSocketOptions
-
The Type of Service (ToS) octet in the Internet Protocol (IP) header.
- IPA_EXTENSIONS - Static variable in class java.lang.Character.UnicodeBlock
-
Constant for the "IPA Extensions" Unicode character block.
- ipadx - Variable in class com.codename1.ui.layouts.GridBagConstraints
-
- ipady - Variable in class com.codename1.ui.layouts.GridBagConstraints
-
- is3DTextNorth() - Method in class com.codename1.ui.plaf.Style
-
Returns the text decoration state for the north
- IS_COALESCING - Static variable in class javax.xml.stream.XMLInputFactory
-
The property that requires the parser to coalesce adjacent character data sections
- IS_NAMESPACE_AWARE - Static variable in class javax.xml.stream.XMLInputFactory
-
The property used to turn on/off namespace support,
this is to support XML 1.0 documents,
only the true setting must be supported
- IS_REPAIRING_NAMESPACES - Static variable in class javax.xml.stream.XMLOutputFactory
-
Property used to set prefix defaulting on the output side
- IS_REPLACING_ENTITY_REFERENCES - Static variable in class javax.xml.stream.XMLInputFactory
-
Requires the parser to replace internal
entity references with their replacement
text and report them as characters
- IS_SUPPORTING_EXTERNAL_ENTITIES - Static variable in class javax.xml.stream.XMLInputFactory
-
The property that requires the parser to resolve external parsed entities
- IS_VALIDATING - Static variable in class javax.xml.stream.XMLInputFactory
-
The property used to turn on/off implementation specific validation
- isAbsolute() - Method in class java.io.File
-
Tests whether this abstract pathname is absolute.
- isAbsolute() - Method in class java.net.URI
-
Tells whether or not this URI is absolute.
- isAbsolute() - Method in interface java.nio.file.Path
-
Tells whether or not this path is absolute.
- isAbsoluteCenter() - Method in class com.codename1.ui.layouts.BorderLayout
-
- isAbstract(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
abstract
modifier, false
otherwise.
- isAcceptable() - Method in class java.nio.channels.SelectionKey
-
Tests whether this key's channel is ready to accept a new socket
connection.
- isAccessible() - Method in class java.lang.reflect.AccessibleObject
-
Get the value of the accessible
flag for this object.
- isActAsSpinnerDialog() - Method in class com.codename1.ui.ComboBox
-
When this flag is active the combo box acts as a button that opens a dialog that looks like a spinner
this allows creating user interfaces for touch devices where a spinner UI approach is more common than
a combo box paradigm.
- isActionKey() - Method in class java.awt.event.KeyEvent
-
Returns whether the key in this event is an "action" key.
- isAddBackToTaget() - Method in class com.codename1.components.RSSReader
-
Indicates whether a back command should be added implicitly to the target container
- isAffineSupported() - Method in class com.codename1.ui.Graphics
-
Indicates whether the underlying implementation can draw using an affine
transform hence methods such as rotate, scale and shear would work
- isAffineSupported() - Method in class com.sun.lwuit.Graphics
-
Indicates whether the underlying implementation can draw using an affine
transform hence methods such as rotate, scale and shear would work
- isAfter(ChronoLocalDate) - Method in interface java.time.chrono.ChronoLocalDate
-
Checks if this date is after the specified date ignoring the chronology.
- isAfter(ChronoLocalDateTime<?>) - Method in interface java.time.chrono.ChronoLocalDateTime
-
Checks if this date-time is after the specified date-time ignoring the chronology.
- isAfter(ChronoZonedDateTime<?>) - Method in interface java.time.chrono.ChronoZonedDateTime
-
Checks if the instant of this date-time is after that of the specified date-time.
- isAfter(Instant) - Method in class java.time.Instant
-
Checks if this instant is after the specified instant.
- isAfter(ChronoLocalDate) - Method in class java.time.LocalDate
-
Checks if this date is after the specified date.
- isAfter(ChronoLocalDateTime<?>) - Method in class java.time.LocalDateTime
-
Checks if this date-time is after the specified date-time.
- isAfter(LocalTime) - Method in class java.time.LocalTime
-
Checks if this time is after the specified time.
- isAfter(MonthDay) - Method in class java.time.MonthDay
-
Checks if this month-day is after the specified month-day.
- isAfter(OffsetDateTime) - Method in class java.time.OffsetDateTime
-
Checks if the instant of this date-time is after that of the specified date-time.
- isAfter(OffsetTime) - Method in class java.time.OffsetTime
-
Checks if the instant of this OffsetTime
is after that of the
specified time applying both times to a common date.
- isAfter(Year) - Method in class java.time.Year
-
Checks if this year is after the specified year.
- isAfter(YearMonth) - Method in class java.time.YearMonth
-
Checks if this year-month is after the specified year-month.
- isAfterLast() - Method in interface java.sql.ResultSet
-
Retrieves whether the cursor is after the last row in
this ResultSet
object.
- isAlive() - Method in interface com.codename1.io.JSONParseCallback
-
This method indicates to the Parser if this Callback is still alive
- isAlive() - Method in class com.codename1.io.JSONParser
-
- isAlive() - Method in class java.lang.Process
-
Tests whether the subprocess represented by this Process
is
alive.
- isAlive() - Method in class java.lang.Thread
-
Tests if this thread is alive.
- isAllowMinimizing() - Method in class com.codename1.ui.Display
-
Allows a Codename One application to minimize without forcing it to the front whenever
a new dialog is poped up
- isAllowMinimizing() - Method in class com.sun.lwuit.Display
-
Allows a LWUIT application to minimize without forcing it to the front whenever
a new dialog is poped up
- isAlphabetic(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is an alphabet.
- isAlphaMutableImageSupported() - Static method in class com.codename1.ui.Image
-
Returns true if mutable images support alpha transparency
- isAlphaMutableImageSupported() - Static method in class com.sun.lwuit.Image
-
Returns true if mutable images support alpha transparency
- isAlphaPremultiplied() - Method in class java.awt.image.ColorModel
-
Returns whether or not the alpha has been premultiplied in the
pixel values to be translated by this ColorModel
.
- isAlphaSupported() - Method in class com.codename1.ui.Graphics
-
Indicates whether invoking set/getAlpha would have an effect on all further
rendering from this graphics object.
- isAlphaSupported() - Method in class com.sun.lwuit.Graphics
-
Indicates whether invoking set/getAlpha would have an effect on all further
rendering from this graphics object.
- isAltDown() - Method in class java.awt.event.InputEvent
-
Returns whether or not the Alt modifier is down on this event.
- isAltGraphDown() - Method in class java.awt.event.InputEvent
-
Returns whether or not the AltGraph modifier is down on this event.
- isAlwaysRenderSelection() - Method in class com.codename1.ui.list.DefaultListCellRenderer
-
Indicates that selection should always be rendered regardless of the status of the shouldRenderSelection flag
- isAlwaysRevalidate() - Static method in class com.codename1.io.services.ImageDownloadService
-
By default lists don't revalidate on every change to avoid "jumpiness" when scrolling
- isAlwaysStore() - Method in class com.codename1.io.CacheMap
-
When set to true indicates that all entries should be persisted to storage
for a constantly persisting cache
- isAlwaysTensile() - Method in class com.codename1.ui.Component
-
Enable the tensile drag to work even when a component doesn't have a scroll showable (scrollable flag still needs to be set to true)
- isAlwaysTensile() - Method in class com.codename1.ui.Form
-
- isAnalyticsEnabled() - Method in class com.codename1.analytics.AnalyticsService
-
Indicates if the analytics is enabled, subclasses must override this method to process their information
- isAncestorOf(Component) - Method in class java.awt.Container
-
Checks if the component is contained in the component hierarchy of
this container.
- isAnimation() - Method in class com.codename1.components.FileEncodedImageAsync
-
- isAnimation() - Method in class com.codename1.components.ReplaceableImage
-
- isAnimation() - Method in class com.codename1.components.StorageImageAsync
-
- isAnimation() - Method in class com.codename1.ui.animations.Timeline
-
- isAnimation() - Method in class com.codename1.ui.EncodedImage
-
- isAnimation() - Method in class com.codename1.ui.Image
-
Returns true if this is an animated image
- isAnimation() - Method in class com.codename1.ui.ScaledImage
-
- isAnimation() - Method in class com.codename1.ui.URLImage
-
- isAnimation(String) - Method in class com.codename1.ui.util.Resources
-
- isAnimation() - Method in class com.sun.lwuit.animations.Timeline
-
- isAnimation() - Method in class com.sun.lwuit.EncodedImage
-
- isAnimation() - Method in class com.sun.lwuit.Image
-
Returns true if this is an animated image
- isAnimation() - Method in class com.sun.lwuit.ScaledImage
-
- isAnimation() - Method in class com.sun.lwuit.StaticAnimation
-
Deprecated.
- isAnimation(String) - Method in class com.sun.lwuit.util.Resources
-
- isAnnotation() - Method in class java.lang.Class
-
check if this class instance represents an annotation.
- isAnnotationPresent(Class<? extends Annotation>) - Method in class java.lang.Class
-
- isAnnotationPresent(Class<? extends Annotation>) - Method in class java.lang.Package
-
Returns true if an annotation for the specified type
is present on this element, else false.
- isAnnotationPresent(Class<? extends Annotation>) - Method in class java.lang.reflect.AccessibleObject
-
Returns true if an annotation for the specified type
is present on this element, else false.
- isAnnotationPresent(Class<? extends Annotation>) - Method in interface java.lang.reflect.AnnotatedElement
-
Returns true if an annotation for the specified type
is present on this element, else false.
- isAnonymousClass() - Method in class java.lang.Class
-
Returns true
if and only if the underlying class
is an anonymous class.
- isAntiAliased() - Method in class com.codename1.ui.Graphics
-
Returns true if anti-aliasing for standard rendering operations is turned on.
- isAntiAliased() - Method in class com.sun.lwuit.Graphics
-
Returns true if anti-aliasing for standard rendering operations is turned on.
- isAntiAliasedText() - Method in class com.codename1.ui.Graphics
-
Indicates whether anti-aliasing for text is active,
notice that text anti-aliasing is a separate attribute from standard anti-alisaing.
- isAntiAliasedText(boolean) - Method in class com.sun.lwuit.Graphics
-
Indicates whether anti-aliasing for text is active,
notice that text anti-aliasing is a separate attribute from standard anti-alisaing.
- isAntiAliasedTextSupported() - Method in class com.codename1.ui.Graphics
-
Returns true if anti-aliasing for text is supported,
notice that text anti-aliasing is a separate attribute from standard anti-alisaing.
- isAntiAliasedTextSupported() - Method in class com.sun.lwuit.Graphics
-
Returns true if anti-aliasing for text is supported,
notice that text anti-aliasing is a separate attribute from standard anti-alisaing.
- isAntiAliasingSupported() - Method in class com.codename1.ui.Graphics
-
Returns true if anti-aliasing for standard rendering operations is supported,
notice that text anti-aliasing is a separate attribute.
- isAntiAliasingSupported() - Method in class com.sun.lwuit.Graphics
-
Returns true if anti-aliasing for standard rendering operations is supported,
notice that text anti-aliasing is a separate attribute.
- isAnyLocalAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress in a wildcard address.
- isAnyLocalAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress in a wildcard address.
- isAnyLocalAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress in a wildcard address.
- isAnyPolicyInhibited() - Method in class java.security.cert.PKIXParameters
-
Checks whether the any policy OID should be processed if it
is included in a certificate.
- isAppsMode() - Static method in class com.codename1.analytics.AnalyticsService
-
Apps mode allows improved analytics using the newer google analytics API designed for apps
- isAPSupported() - Method in class com.codename1.io.NetworkManager
-
Indicates whether looking up an access point is supported by this device
- isArchive() - Method in interface java.nio.file.attribute.DosFileAttributes
-
Returns the value of the archive attribute.
- isArray() - Method in class java.lang.Class
-
Test if this class is an array.
- isAssignableFrom(Class<?>) - Method in class java.lang.Class
-
Checks if an object of type cls can be assigned to a variable of
this type.
- isAsyncAdapter() - Method in interface com.codename1.ui.URLImage.ImageAdapter
-
Return true if the adapter should work on a separate thread to avoid blocking the EDT
this is especially important for image masks and heavy image manipulation
- isAttribute() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is an Attribute.
- isAttributeSpecified(int) - Method in class javax.xml.stream.util.StreamReaderDelegate
-
- isAttributeSpecified(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns a boolean which indicates if this
attribute was created by default
- isAuthenticated() - Method in class com.codename1.facebook.FaceBookAccess
-
This method returns true if the user is authenticated to the facebook service.
- isAutoAdjustDialogSize() - Static method in class com.codename1.ui.Dialog
-
Indicates whether Codename One should try to automatically adjust a showing dialog size
when a screen size change event occurs
- isAutoDegradeMaxSize() - Static method in class com.codename1.ui.TextArea
-
Indicates whether a high value for default maxSize will be reduced to a lower
value if the underlying platform throws an exception.
- isAutoDegradeMaxSize() - Static method in class com.sun.lwuit.TextArea
-
Indicates whether a high value for default maxSize will be reduced to a lower
value if the underlying platform throws an exception.
- isAutoDispose() - Method in class com.codename1.ui.Dialog
-
Determines whether the execution of a command on this dialog implicitly
disposes the dialog.
- isAutoDispose() - Method in class com.sun.lwuit.Dialog
-
Determines whether the execution of a command on this dialog implicitly
disposes the dialog.
- isAutoFit() - Method in class com.codename1.ui.layouts.GridLayout
-
Auto fits columns/rows to available screen space
- isAutoFoldVKBOnFormSwitch() - Method in class com.codename1.ui.Display
-
Normally Codename One folds the VKB when switching forms this field allows us
to block that behavior.
- isAutoIncrement(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether the designated column is automatically numbered.
- isAutoShow() - Method in class com.codename1.components.Progress
-
Shows the progress automatically when the request processing is started
- isAutoStored() - Static method in class com.codename1.io.Cookie
-
Returns true if the Cookies are auto stored to storage
- isBackCommandEnabled() - Method in class com.codename1.ui.util.UIBuilder
-
Seamlessly inserts a back command to all the forms
- isBackgroundImageDetermineSize() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates if the bg image of a style should determine the minimum preferred size according to the theme
- isBackgroundPainter() - Method in class com.codename1.ui.plaf.Border
-
Returns true if installing this border will override the painting of the component background
- isBackgroundPainter() - Method in class com.sun.lwuit.plaf.Border
-
Returns true if installing this border will override the painting of the component background
- isBackgroundSet() - Method in class java.awt.Component
-
Returns whether the background color has been explicitly set for this
Component.
- isBackToParent() - Static method in class com.codename1.io.Oauth2
-
Enables going back to the parent form after login is completed
- isBadgingSupported() - Method in class com.codename1.ui.Display
-
Returns true if the underlying OS supports numeric badges on icons.
- isBefore(ChronoLocalDate) - Method in interface java.time.chrono.ChronoLocalDate
-
Checks if this date is before the specified date ignoring the chronology.
- isBefore(ChronoLocalDateTime<?>) - Method in interface java.time.chrono.ChronoLocalDateTime
-
Checks if this date-time is before the specified date-time ignoring the chronology.
- isBefore(ChronoZonedDateTime<?>) - Method in interface java.time.chrono.ChronoZonedDateTime
-
Checks if the instant of this date-time is before that of the specified date-time.
- isBefore(Instant) - Method in class java.time.Instant
-
Checks if this instant is before the specified instant.
- isBefore(ChronoLocalDate) - Method in class java.time.LocalDate
-
Checks if this date is before the specified date.
- isBefore(ChronoLocalDateTime<?>) - Method in class java.time.LocalDateTime
-
Checks if this date-time is before the specified date-time.
- isBefore(LocalTime) - Method in class java.time.LocalTime
-
Checks if this time is before the specified time.
- isBefore(MonthDay) - Method in class java.time.MonthDay
-
Checks if this month-day is before the specified month-day.
- isBefore(OffsetDateTime) - Method in class java.time.OffsetDateTime
-
Checks if the instant of this date-time is before that of the specified date-time.
- isBefore(OffsetTime) - Method in class java.time.OffsetTime
-
Checks if the instant of this OffsetTime
is before that of the
specified time applying both times to a common date.
- isBefore(Year) - Method in class java.time.Year
-
Checks if this year is before the specified year.
- isBefore(YearMonth) - Method in class java.time.YearMonth
-
Checks if this year-month is before the specified year-month.
- isBeforeFirst() - Method in interface java.sql.ResultSet
-
Retrieves whether the cursor is before the first row in
this ResultSet
object.
- isBidiAlgorithm() - Method in class com.codename1.ui.Display
-
Indicates whether Codename One should consider the bidi RTL algorithm
when drawing text or navigating with the text field cursor.
- isBidiAlgorithm() - Method in class com.sun.lwuit.Display
-
Indicates whether LWUIT should consider the bidi RTL algorithm
when drawing text or navigating with the text field cursor.
- isBitmapFontEnabled() - Static method in class com.codename1.ui.Font
-
Indicates whether bitmap fonts should be enabled when loading or
the fallback system font should be used instead.
- isBitmapFontEnabled() - Static method in class com.sun.lwuit.Font
-
Indicates whether bitmap fonts should be enabled when loading or
the fallback system font should be used instead.
- isBlockAnalytics() - Static method in class com.codename1.ui.util.UIBuilder
-
Enables blocking analytics in the UIBuilder, this is useful for the designer tool.
- isBlocking() - Method in class com.codename1.ui.util.EventDispatcher
-
Indicates whether this dispatcher blocks when firing events or not, normally
a dispatcher uses callSeriallyAndWait() to be 100% synchronous with event delivery
however this method is very slow.
- isBlocking() - Method in class java.nio.channels.SelectableChannel
-
Tells whether or not every I/O operation on this channel will block
until it completes.
- isBlocking() - Method in class java.nio.channels.spi.AbstractSelectableChannel
-
- isBlockList() - Method in class com.codename1.components.RSSReader
-
- isBmpCodePoint(int) - Static method in class java.lang.Character
-
- isBorderPainted() - Method in class com.sun.lwuit.Component
-
- isBound() - Method in class java.net.DatagramSocket
-
Returns the binding state of the socket.
- isBound() - Method in class java.net.ServerSocket
-
Returns the binding state of the ServerSocket.
- isBound() - Method in class java.net.Socket
-
Returns the binding state of the socket.
- isBoundary(int) - Method in class java.text.BreakIterator
-
Returns true if the specified character offset is a text boundary.
- isBridge() - Method in class java.lang.reflect.Method
-
Returns true
if this method is a bridge
method; returns false
otherwise.
- isBroken() - Method in class java.util.concurrent.CyclicBarrier
-
Queries if this barrier is in a broken state.
- isBuiltinSoundAvailable(String) - Method in class com.codename1.ui.Display
-
Indicates whether a user installed or system sound is available
- isBuiltinSoundsEnabled() - Method in class com.codename1.ui.Display
-
Allows muting/unmuting the builtin sounds easily
- isCancelled() - Method in class java.util.concurrent.CompletableFuture
-
Returns true
if this CompletableFuture was cancelled
before it completed normally.
- isCancelled() - Method in class java.util.concurrent.ForkJoinTask
-
- isCancelled() - Method in interface java.util.concurrent.Future
-
Returns true
if this task was cancelled before it completed
normally.
- isCancelled() - Method in class java.util.concurrent.FutureTask
-
- isCaseSensitive() - Method in class com.codename1.xml.XMLParser
-
Sets the parser to be case sensitive and retain case, otherwise it will convert all data to lower case
- isCaseSensitive(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether a column's case matters.
- isCatalogAtStart() - Method in interface java.sql.DatabaseMetaData
-
Retrieves whether a catalog appears at the start of a fully qualified
table name.
- isCData() - Method in interface javax.xml.stream.events.Characters
-
Returns true if this is a CData section.
- isCellEditable(int, int) - Method in class com.codename1.ui.table.DefaultTableModel
-
- isCellEditable(int, int) - Method in interface com.codename1.ui.table.TableModel
-
Returns true if the cell at the given location is an editable cell
- isCellEditable(int, int) - Method in class com.sun.lwuit.table.DefaultTableModel
-
- isCellEditable(int, int) - Method in interface com.sun.lwuit.table.TableModel
-
Returns true if the cell at the given location is an editable cell
- isCellRenderer() - Method in class com.codename1.ui.Component
-
Used as an optimization to mark that this component is currently being
used as a cell renderer
- isCellSpannedThroughHorizontally(int, int) - Method in class com.codename1.ui.table.TableLayout
-
Returns true if the cell at the given position is spanned through horizontally
- isCellSpannedThroughHorizontally(int, int) - Method in class com.sun.lwuit.table.TableLayout
-
Returns true if the cell at the given position is spanned through horizontally
- isCellSpannedThroughVertically(int, int) - Method in class com.codename1.ui.table.TableLayout
-
Returns true if the cell at the given position is spanned through vertically
- isCellSpannedThroughVertically(int, int) - Method in class com.sun.lwuit.table.TableLayout
-
Returns true if the cell at the given position is spanned through vertically
- isCertificateEntry(String) - Method in class java.security.KeyStore
-
Returns true if the entry identified by the given alias
was created by a call to setCertificateEntry
,
or created by a call to setEntry
with a
TrustedCertificateEntry
.
- isChangeInputMode(int) - Method in class com.codename1.ui.TextField
-
Indicates whether the key changes the current input mode
- isChangeInputMode(int) - Method in class com.sun.lwuit.TextField
-
Indicates whether the key changes the current input mode
- isChangesSelectedDateEnabled() - Method in class com.codename1.ui.Calendar
-
This flag determines if selected date can be changed by selecting an
alternative date
- isChangeTabContainerStyleOnFocus() - Method in class com.codename1.ui.Tabs
-
Indicates that the tabs container should have its style changed to the selected style when one of the tabs has focus
this allows incorporating it into the theme of the application
- isChangeTabOnFocus() - Method in class com.codename1.ui.Tabs
-
Indicates that a tab should change when the focus changes without the user physically pressing a button
- isCharacters() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is Characters.
- isCharacters() - Method in class javax.xml.stream.util.StreamReaderDelegate
-
- isCharacters() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns true if the cursor points to a character data event
- isCheckBox() - Method in class com.codename1.components.MultiButton
-
Returns true if this is a checkbox button
- isClearKey(int) - Method in class com.codename1.ui.TextField
-
Returns true if this is the clear key on the device, many devices don't contain
a clear key and even in those that contain it this might be an issue
- isClearKey(int) - Method in class com.sun.lwuit.TextField
-
Returns true if this is the clear key on the device, many devices don't contain
a clear key and even in those that contain it this might be an issue
- isClickTouchScreen() - Method in class com.codename1.ui.Display
-
Indicates whether the device has a double layer screen thus allowing two
stages to touch events: click and hover.
- isClickTouchScreen() - Method in class com.sun.lwuit.Display
-
Indicates whether the device has a double layer screen thus allowing two
stages to touch events: click and hover.
- isClosed() - Method in class java.net.DatagramSocket
-
Returns whether the socket is closed or not.
- isClosed() - Method in class java.net.ServerSocket
-
Returns the closed state of the ServerSocket.
- isClosed() - Method in class java.net.Socket
-
Returns the closed state of the socket.
- isClosed() - Method in interface java.sql.Connection
-
Retrieves whether this Connection
object has been
closed.
- isClosed() - Method in interface java.sql.ResultSet
-
Retrieves whether this ResultSet
object has been closed.
- isClosed() - Method in interface java.sql.Statement
-
Retrieves whether this Statement
object has been closed.
- isCloseOnCompletion() - Method in interface java.sql.Statement
-
Returns a value indicating whether this Statement
will be
closed when all its dependent result sets are closed.
- isCoalescing() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which converts CDATA nodes to Text nodes and appends it to
the adjacent (if any) Text node.
- isCommandList() - Method in class com.codename1.ui.List
-
Indicates that the list should be treated as a list of commands, if the
user "clicks" a command from the list its action performed method is invoked.
- isCommandList() - Method in class com.sun.lwuit.List
-
Indicates that the list should be treated as a list of commands, if the
user "clicks" a command from the list its action performed method is invoked.
- isCommandsAsButtons() - Static method in class com.codename1.ui.Dialog
-
Places commands as buttons at the bottom of the standard static dialogs rather than
as softbuttons.
- isCommandsAsButtons() - Static method in class com.sun.lwuit.Dialog
-
Places commands as buttons at the bottom of the standard static dialogs rather than
as softbuttons.
- isCommitOnDispose(TextArea) - Static method in class com.codename1.ui.VirtualKeyboard
-
Indicates whether the given text field should commit on dispose
- isCompatibleWith(String) - Method in class java.lang.Package
-
Compare this package's specification version with a
desired version.
- isCompletedAbnormally() - Method in class java.util.concurrent.ForkJoinTask
-
Returns true
if this task threw an exception or was cancelled.
- isCompletedExceptionally() - Method in class java.util.concurrent.CompletableFuture
-
Returns true
if this CompletableFuture completed
exceptionally, in any way.
- isCompletedNormally() - Method in class java.util.concurrent.ForkJoinTask
-
Returns true
if this task completed without throwing an
exception and was not cancelled.
- isCompositionEnabled() - Method in class java.awt.im.InputContext
-
Determines whether the current input method is enabled for composition.
- isConnectable() - Method in class java.nio.channels.SelectionKey
-
Tests whether this key's channel has either finished, or failed to
finish, its socket-connection operation.
- isConnected() - Method in class com.codename1.io.SocketConnection
-
Returns true if this connection is currently active
- isConnected() - Method in class java.net.DatagramSocket
-
Returns the connection state of the socket.
- isConnected() - Method in class java.net.Socket
-
Returns the connection state of the socket.
- isConnected() - Method in class java.nio.channels.DatagramChannel
-
Tells whether or not this channel's socket is connected.
- isConnected() - Method in class java.nio.channels.SocketChannel
-
Tells whether or not this channel's network socket is connected.
- isConnectionPending() - Method in class java.nio.channels.SocketChannel
-
Tells whether or not a connection operation is in progress on this
channel.
- isConstraintTracking() - Method in class com.codename1.ui.layouts.BorderLayout
-
- isConstraintTracking() - Method in class com.codename1.ui.layouts.Layout
-
If this method returns true, the addLayoutComponent method will be called when replacing a
layout for every component within the container
- isConstraintTracking() - Method in class com.codename1.ui.table.TableLayout
-
- isConsumed() - Method in class com.codename1.ui.events.ActionEvent
-
Returns true if the event was consumed thus indicating that it was handled.
- isConsumed() - Method in class com.sun.lwuit.events.ActionEvent
-
Returns true if the event was consumed thus indicating that it was handled.
- isConsumed() - Method in class java.awt.event.InputEvent
-
Returns whether or not this event has been consumed.
- isConsumed() - Method in class java.awt.event.InputMethodEvent
-
Returns whether or not this event has been consumed.
- isConsumer(ImageConsumer) - Method in class java.awt.image.FilteredImageSource
-
Determines whether an ImageConsumer is on the list of consumers
currently interested in data for this image.
- isConsumer(ImageConsumer) - Method in interface java.awt.image.ImageProducer
-
Determines if a specified ImageConsumer
object is currently registered with this
ImageProducer
as one of its consumers.
- isConsumer(ImageConsumer) - Method in class java.awt.image.MemoryImageSource
-
Determines if an ImageConsumer is on the list of consumers currently
interested in data for this image.
- isContactsPermissionGranted() - Method in class com.codename1.ui.Display
-
Some platforms allow the user to block contacts access on a per application basis (specifically iOS).
- isControlDown() - Method in class java.awt.event.InputEvent
-
Returns whether or not the Control modifier is down on this event.
- isCookiesEnabled() - Method in class com.codename1.io.ConnectionRequest
-
- isCookiesEnabledDefault() - Static method in class com.codename1.io.ConnectionRequest
-
- isCreatePlainTextDetails() - Method in class com.codename1.io.services.RSSService
-
Creates an additional "details" attribute in the resulting hashtables
which effectively contains a plain text version of the description tag.
- isCreationByStringSupported() - Static method in class com.codename1.ui.Font
-
Returns true if the underlying platform allows creating a font based on a
user submitted string.
- isCreationByStringSupported() - Static method in class com.sun.lwuit.Font
-
Returns true if the underlying platform allows creating a font based on a
user submitted string.
- isCritical() - Method in interface java.security.cert.Extension
-
Gets the extension's criticality setting.
- isCritical() - Method in interface java.security.cert.PolicyNode
-
Returns the criticality indicator of the certificate policy extension
in the most recently processed certificate.
- isCryptoAllowed(Key) - Method in class javax.crypto.ExemptionMechanism
-
Returns whether the result blob has been generated successfully by this
exemption mechanism.
- isCurrency(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether the designated column is a cash value.
- isCurrent() - Method in interface javax.security.auth.Refreshable
-
Determine if this Object
is current.
- isCurrentMeridiem() - Method in class com.codename1.ui.spinner.TimeSpinner
-
- isCursorPositionCycle() - Method in class com.codename1.ui.TextField
-
Returns true if the cursor should cycle to the beginning of the text when the
user navigates beyond the edge of the text and visa versa.
- isCursorPositionCycle() - Method in class com.sun.lwuit.TextField
-
Returns true if the cursor should cycle to the beginning of the text when the
user navigates beyond the edge of the text and visa versa.
- isCursorSet() - Method in class java.awt.Component
-
Returns whether the cursor has been explicitly set for this Component.
- isCycleLeft() - Method in class com.codename1.components.ImageViewer
-
By default the ImageViewer cycles from the beginning to the end of the list
when going to the left, setting this to false prevents this behaviour
- isCycleRight() - Method in class com.codename1.components.ImageViewer
-
By default the ImageViewer cycles from the end to the beginning of the list
when going to the right, setting this to false prevents this behaviour
- isCyclicFocus() - Method in class com.codename1.ui.Form
-
Indicates whether focus should cycle within the form
- isCyclicFocus() - Method in class com.sun.lwuit.Form
-
Indicates whether focus should cycle within the form
- isDaemon() - Method in class java.lang.Thread
-
Tests if this thread is a daemon thread.
- isDaemon() - Method in class java.lang.ThreadGroup
-
Tests if this thread group is a daemon thread group.
- isData(String) - Method in class com.codename1.ui.util.Resources
-
Returns true if this is a data resource
- isData(String) - Method in class com.sun.lwuit.util.Resources
-
Returns true if this is a data resource
- isDateBased() - Method in enum java.time.temporal.ChronoField
-
Checks if this field represents a component of a date.
- isDateBased() - Method in enum java.time.temporal.ChronoUnit
-
Checks if this unit is a date unit.
- isDateBased() - Method in interface java.time.temporal.TemporalField
-
Checks if this field represents a component of a date.
- isDateBased() - Method in interface java.time.temporal.TemporalUnit
-
Checks if this unit represents a component of a date.
- isDaylightSavings(Instant) - Method in class java.time.zone.ZoneRules
-
Checks if the specified instant is in daylight savings.
- isDecimalSeparatorAlwaysShown() - Method in class java.text.DecimalFormat
-
Allows you to get the behavior of the decimal separator with integers.
- isDeclared(int) - Method in interface org.xml.sax.ext.Attributes2
-
Returns false unless the attribute was declared in the DTD.
- isDeclared(String) - Method in interface org.xml.sax.ext.Attributes2
-
Returns false unless the attribute was declared in the DTD.
- isDeclared(String, String) - Method in interface org.xml.sax.ext.Attributes2
-
Returns false unless the attribute was declared in the DTD.
- isDeclared(int) - Method in class org.xml.sax.ext.Attributes2Impl
-
Returns the current value of the attribute's "declared" flag.
- isDeclared(String, String) - Method in class org.xml.sax.ext.Attributes2Impl
-
Returns the current value of the attribute's "declared" flag.
- isDeclared(String) - Method in class org.xml.sax.ext.Attributes2Impl
-
Returns the current value of the attribute's "declared" flag.
- isDefault() - Method in class java.lang.reflect.Method
-
Returns true
if this method is a default
method; returns false
otherwise.
- isDefaultActAsSpinnerDialog() - Static method in class com.codename1.ui.ComboBox
-
When this flag is active the combo box acts as a button that opens a dialog that looks like a spinner
this allows creating user interfaces for touch devices where a spinner UI approach is more common than
a combo box paradigm.
- isDefaultAction() - Method in class com.sun.lwuit.Command
-
- isDefaultAlwaysTensile() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Enable the tensile drag to work even when a component doesn't have a scroll showable (scrollable flag still needs to be set to true)
- isDefaultEndsWith3Points() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether labels should end with 3 points by default
- isDefaultEndsWith3Points() - Method in class com.sun.lwuit.plaf.LookAndFeel
-
Indicates whether labels should end with 3 points by default
- isDefaultFireOnClick() - Static method in class com.codename1.ui.List
-
Default value for the fire on click behavior
- isDefaultFollowRedirects() - Static method in class com.codename1.io.ConnectionRequest
-
- isDefaultIgnoreFocusComponentWhenUnfocused() - Static method in class com.codename1.ui.List
-
Indicates whether the list should not paint the focus component if the list
itself has no focus.
- isDefaultIncludeSelectCancel() - Static method in class com.codename1.ui.ComboBox
-
Indicates whethe the soft buttons for select/cancel should appear for the combo box by default
- isDefaultIncludeSelectCancel() - Static method in class com.sun.lwuit.ComboBox
-
Indicates whethe the soft buttons for select/cancel should appear for the combo box by default
- isDefaultLinearMotion() - Static method in class com.codename1.ui.animations.CommonTransitions
-
Indicates whether the motion associated with these transitions by default is linear or spline motion
- isDefaultLinearMotion() - Static method in class com.sun.lwuit.animations.CommonTransitions
-
Indicates whether the motion associated with these transitions by default is linear or spline motion
- isDefaultMaintainAspectRatio() - Static method in class com.codename1.io.services.ImageDownloadService
-
- isDefaultNamespace(String) - Method in interface org.w3c.dom.Node
-
This method checks if the specified namespaceURI
is the
default namespace or not.
- isDefaultNamespaceDeclaration() - Method in interface javax.xml.stream.events.Namespace
-
returns true if this attribute declares the default namespace
- isDefaultSmoothScrolling() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether lists and containers should have smooth scrolling by default
- isDefaultSmoothScrolling() - Method in class com.sun.lwuit.plaf.LookAndFeel
-
Indicates whether lists and containers should have smooth scrolling by default
- isDefaultSnapToGrid() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether scrolling this component should jump to a specific location
in a grid
- isDefaultTensileDrag() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether tensile drag should be active by default
- isDefaultTensileDrag() - Method in class com.sun.lwuit.plaf.LookAndFeel
-
Indicates whether tensile drag should be active by default
- isDefaultTensileHighlight() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether tensile highlight should be active by default
- isDefaultTickerEnabled() - Static method in class com.codename1.ui.Label
-
Allows disabling/enabling tickers globally
- isDefined(char) - Static method in class java.lang.Character
-
Determines if a character is defined in Unicode.
- isDefined(int) - Static method in class java.lang.Character
-
Determines if a character (Unicode code point) is defined in Unicode.
- isDefinitelyWritable(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether a write on the designated column will definitely succeed.
- isDerivedFrom(String, String, int) - Method in interface org.w3c.dom.TypeInfo
-
This method returns if there is a derivation between the reference
type definition, i.e.
- isDesktop() - Method in class com.codename1.ui.Display
-
Returns true if this is a desktop application
- isDestroyed() - Method in class java.lang.ThreadGroup
-
Tests if this thread group has been destroyed.
- isDestroyed() - Method in class java.security.KeyStore.PasswordProtection
-
Determines if password has been cleared.
- isDestroyed() - Method in interface javax.security.auth.Destroyable
-
Determine if this Object
has been destroyed.
- isDestroyed() - Method in class javax.security.auth.x500.X500PrivateCredential
-
Determines if the references to the X.509 certificate and private key
in this object have been cleared.
- isDigit(char) - Static method in class java.lang.Character
-
Determines if the specified character is a digit.
- isDigit(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a digit.
- isDirect() - Method in class java.nio.Buffer
-
Tells whether or not this buffer is
direct.
- isDirectory(String) - Method in class com.codename1.io.FileSystemStorage
-
Indicates whether the given file is a directory
- isDirectory() - Method in class java.io.File
-
Tests whether the file denoted by this abstract pathname is a
directory.
- isDirectory() - Method in interface java.nio.file.attribute.BasicFileAttributes
-
Tells whether the file is a directory.
- isDirectory(Path, LinkOption...) - Static method in class java.nio.file.Files
-
Tests whether a file is a directory.
- isDirectory() - Method in class java.util.zip.ZipEntry
-
Returns true if this is a directory entry.
- isDirectory() - Method in interface javax.microedition.io.file.FileConnection
-
- isDisableBuffering() - Method in class com.codename1.io.BufferedInputStream
-
- isDisableStaticDialogScrolling() - Static method in class com.codename1.ui.Dialog
-
Allows a developer to indicate his interest that the dialog should no longer
scroll on its own but rather rely on the scrolling properties of internal
scrollable containers.
- isDisableStaticDialogScrolling() - Static method in class com.sun.lwuit.Dialog
-
Allows a developer to indicate his interest that the dialog should no longer
scroll on its own but rather rely on the scrolling properties of internal
scrollable containers.
- isDisplayable() - Method in class java.awt.Component
-
Determines whether this component is displayable.
- isDisposeOnCompletion() - Method in class com.codename1.components.Progress
-
- isDisposeWhenPointerOutOfBounds() - Method in class com.codename1.ui.Dialog
-
This flag indicates if the dialog should be disposed if a pointer
released event occurred out of the dialog content.
- isDone() - Method in class java.util.concurrent.CompletableFuture
-
Returns true
if completed in any fashion: normally,
exceptionally, or via cancellation.
- isDone() - Method in class java.util.concurrent.ForkJoinTask
-
- isDone() - Method in interface java.util.concurrent.Future
-
Returns true
if this task completed.
- isDone() - Method in class java.util.concurrent.FutureTask
-
- isDoubleBuffered() - Method in class java.awt.Component
-
Returns true if this component is painted to an offscreen image
("buffer") that's copied to the screen later.
- isDownKey(int) - Method in class com.codename1.maps.MapComponent
-
Returns true if this is a down keycode
- isDownloadToStyles() - Method in class com.codename1.io.services.ImageDownloadService
-
Downloads the image to the style objects associated with this component, effectively
sets the bgImage property on all the styles for the component instead of invoking setIcon
- isDragActivated() - Method in class com.codename1.ui.Component
-
Indicates whether we are in the middle of a drag operation, this method allows
developers overriding the pointer released events to know when this is a drag
operation.
- isDragActivated() - Method in class com.sun.lwuit.Component
-
Indicates whether we are in the middle of a drag operation, this method allows
developers overriding the pointer released events to know when this is a drag
operaton.
- isDragAndDropOperation(int, int) - Method in class com.codename1.ui.Component
-
This method allows a developer to define only a specific portion of a component as draggable
by default it returns true if the component is defined as "draggable"
- isDraggable() - Method in class com.codename1.ui.Component
-
Indicates whether this component can be dragged in a drag and drop operation rather than scroll the parent
- isDragRegion(int, int) - Method in class com.codename1.ui.Component
-
- isDragRegion(int, int) - Method in class com.codename1.ui.Form
-
- isDrawBorder() - Method in class com.codename1.ui.table.Table
-
Indicates whether the table border should be drawn
- isDrawBorder() - Method in class com.sun.lwuit.table.Table
-
Indicates whether the table border should be drawn
- isDropTarget() - Method in class com.codename1.ui.Component
-
Indicates whether this component can receive dropped components into it, notice that when dropping on a component
or container the parents will be checked recursively to find a valid drop target
- isDuplicateSupported() - Method in class com.codename1.io.ConnectionRequest
-
Indicates whether this connection request supports duplicate entries in the request queue
- isDurationEstimated() - Method in enum java.time.temporal.ChronoUnit
-
Checks if the duration of the unit is an estimate.
- isDurationEstimated() - Method in interface java.time.temporal.TemporalUnit
-
Checks if the duration of the unit is an estimate.
- isDurationMode() - Method in class com.codename1.ui.spinner.TimeSpinner
-
Duration mode uses the time spinner to indicate a duration in hours and minutes
- isEagerLock() - Method in class com.codename1.components.ImageViewer
-
Eager locking effectively locks the right/left images as well as the main image, as a result
more heap is taken
- isEchoOn() - Method in class javax.security.auth.callback.PasswordCallback
-
Return whether the password
should be displayed as it is being typed.
- isEditable() - Method in class com.codename1.ui.Slider
-
Indicates the slider is modifyable
- isEditable() - Method in class com.codename1.ui.TextArea
-
Returns true if this area is editable
- isEditable() - Method in class com.sun.lwuit.TextArea
-
Returns true if this area is editable
- isEditingEndTrigger(int) - Method in class com.codename1.ui.TextField
-
Indicates whether the given key code should be ignored or should trigger
cause editing to end.
- isEditingEndTrigger(int) - Method in class com.sun.lwuit.TextField
-
Indicates whether the given key code should be ignored or should trigger
cause editing to end.
- isEditingTrigger(int) - Method in class com.codename1.ui.TextField
-
Indicates whether the given key code should be ignored or should trigger
editing, by default fire or any numeric key should trigger editing implicitly.
- isEditingTrigger(int) - Method in class com.sun.lwuit.TextField
-
Indicates whether the given key code should be ignored or should trigger
editing, by default fire or any numeric key should trigger editing implicitly.
- isEdt() - Method in class com.codename1.ui.Display
-
Returns true if we are currently in the event dispatch thread.
- isEdt() - Method in class com.sun.lwuit.Display
-
Returns true if we are currently in the event dispatch thread.
- isElementContentWhitespace() - Method in interface org.w3c.dom.Text
-
- isEmpty() - Method in class com.codename1.xml.Element
-
Determines whether or not this Element has no children.
- isEmpty() - Method in class java.lang.String
-
- isEmpty() - Method in class java.util.AbstractCollection
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.AbstractMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.ArrayDeque
-
Returns true
if this deque contains no elements.
- isEmpty() - Method in class java.util.ArrayList
-
Returns true if this list contains no elements.
- isEmpty() - Method in class java.util.BitSet
-
Returns true if this BitSet
contains no bits that are set
to true
.
- isEmpty() - Method in interface java.util.Collection
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.concurrent.ConcurrentHashMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns true
if this collection contains no elements.
- isEmpty() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns true
if this queue contains no elements.
- isEmpty() - Method in class java.util.concurrent.ConcurrentSkipListMap
-
Returns true
if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns true
if this set contains no elements.
- isEmpty() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns true
if this list contains no elements.
- isEmpty() - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns true
if this set contains no elements.
- isEmpty() - Method in class java.util.concurrent.LinkedTransferQueue
-
Returns true
if this queue contains no elements.
- isEmpty() - Method in class java.util.concurrent.SynchronousQueue
-
Always returns true
.
- isEmpty() - Method in class java.util.Dictionary
-
Tests if this dictionary maps no keys to value.
- isEmpty() - Method in class java.util.HashMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.HashSet
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.Hashtable
-
Tests if this hashtable maps no keys to values.
- isEmpty() - Method in class java.util.IdentityHashMap
-
Returns true if this identity hash map contains no key-value
mappings.
- isEmpty() - Method in class java.util.jar.Attributes
-
Returns true if this Map contains no attributes.
- isEmpty() - Method in interface java.util.List
-
Returns true if this list contains no elements.
- isEmpty() - Method in interface java.util.Map
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in interface java.util.Set
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.TreeSet
-
Returns true
if this set contains no elements.
- isEmpty() - Method in class java.util.Vector
-
Tests if this vector has no components.
- isEmpty() - Method in class java.util.WeakHashMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class javax.script.SimpleBindings
-
Returns true if this map contains no key-value mappings.
- isEmptyTag(String) - Method in class com.codename1.ui.html.HTMLParser
-
Checks whether the specified tag is an empty tag as defined in EMPTY_TAGS
- isEmptyTag(String) - Method in class com.codename1.xml.XMLParser
-
Checks whether the specified tag is an empty tag
- isEnabled() - Static method in class com.codename1.analytics.AnalyticsService
-
Indicates whether analytics is enabled for this application
- isEnabled() - Method in class com.codename1.ui.Command
-
Allows disabling/enabling the command
- isEnabled() - Method in class com.codename1.ui.Component
-
Indicates whether component is enabled or disabled thus allowing us to prevent
a component from receiving input events and indicate so visually
- isEnabled() - Method in class com.codename1.ui.Container
-
- isEnabled() - Method in class com.sun.lwuit.Component
-
Indicates whether component is enabled or disabled thus allowing us to prevent
a component from receiving input events and indicate so visually
- isEnabled() - Method in class java.awt.Component
-
Determines whether this component is enabled.
- isEnableInputScroll() - Method in class com.codename1.ui.TextArea
-
Indicates whether text field input should scroll to the right side when no
more room for the input is present.
- isEnableInputScroll() - Method in class com.codename1.ui.TextField
-
- isEnableInputScroll() - Method in class com.sun.lwuit.TextArea
-
Indicates whether text field input should scroll to the right side when no
more room for the input is present.
- isEnableInputScroll() - Method in class com.sun.lwuit.TextField
-
- isEndDocument() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is an EndDocument.
- isEndElement() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is a EndElement.
- isEndElement() - Method in class javax.xml.stream.util.StreamReaderDelegate
-
- isEndElement() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns true if the cursor points to an end tag (otherwise false)
- isEndsWith3Points() - Method in class com.codename1.ui.Label
-
Simple getter
- isEndsWith3Points() - Method in class com.codename1.ui.TextArea
-
Simple getter
- isEndsWith3Points() - Method in class com.sun.lwuit.Label
-
Simple getter
- isEnqueued() - Method in class java.lang.ref.Reference
-
Tells whether or not this reference object has been enqueued, either by
the program or by the garbage collector.
- isEnterKey(int) - Method in class com.codename1.ui.TextArea
-
Indicates the enter key to be used for editing the text area and by the
text field
- isEnterKey(int) - Method in class com.sun.lwuit.TextArea
-
Indicates the enter key to be used for editing the text area and by the
text field
- isEntityReference() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is an EntityReference.
- isEnum() - Method in class java.lang.Class
-
Returns true if and only if this class was declared as an enum in the
source code.
- isEnumConstant() - Method in class java.lang.reflect.Field
-
Returns true
if this field represents an element of
an enumerated type; returns false
otherwise.
- isEqual(byte[], byte[]) - Static method in class java.security.MessageDigest
-
Compares two digests for equality.
- isEqual(ChronoLocalDate) - Method in interface java.time.chrono.ChronoLocalDate
-
Checks if this date is equal to the specified date ignoring the chronology.
- isEqual(ChronoLocalDateTime<?>) - Method in interface java.time.chrono.ChronoLocalDateTime
-
Checks if this date-time is equal to the specified date-time ignoring the chronology.
- isEqual(ChronoZonedDateTime<?>) - Method in interface java.time.chrono.ChronoZonedDateTime
-
Checks if the instant of this date-time is equal to that of the specified date-time.
- isEqual(ChronoLocalDate) - Method in class java.time.LocalDate
-
Checks if this date is equal to the specified date.
- isEqual(ChronoLocalDateTime<?>) - Method in class java.time.LocalDateTime
-
Checks if this date-time is equal to the specified date-time.
- isEqual(OffsetDateTime) - Method in class java.time.OffsetDateTime
-
Checks if the instant of this date-time is equal to that of the specified date-time.
- isEqual(OffsetTime) - Method in class java.time.OffsetTime
-
Checks if the instant of this OffsetTime
is equal to that of the
specified time applying both times to a common date.
- isEqual(Object) - Static method in interface java.util.function.Predicate
-
- isEqualNode(Node) - Method in interface org.w3c.dom.Node
-
Tests whether two nodes are equal.
- isError() - Method in class java.nio.charset.CoderResult
-
Tells whether or not this object describes an error condition.
- isEventsEnabled() - Method in class com.codename1.ui.html.HTMLComponent
-
Deprecated.
Returns the current status of the events enabled flag
- isExecutable(Path) - Static method in class java.nio.file.Files
-
Tests whether a file is executable.
- isExpandEntityReferences() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which expand entity reference nodes.
- isExplicitPolicyRequired() - Method in class java.security.cert.PKIXParameters
-
Checks if explicit policy is required.
- isFacebookSDKSupported() - Method in class com.codename1.social.FacebookConnect
-
Indicates whether the native platform supports native facebook login
- isFadeScrollBar() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether the scrollbar should fade when unused
- isFadeScrollEdge() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether the edge of a scrollable area should fade out
- isFailOnMissingTruetype() - Static method in class com.codename1.ui.util.Resources
-
- isFailSilently() - Static method in class com.codename1.analytics.AnalyticsService
-
Indicates whether analytics server failures should brodcast an error event
- isFailSilently() - Method in class com.codename1.io.ConnectionRequest
-
Indicates that we are uninterested in error handling
- isFair() - Method in class java.util.concurrent.locks.ReentrantLock
-
Returns true
if this lock has fairness set true.
- isFair() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Returns true
if this lock has fairness set true.
- isFair() - Method in class java.util.concurrent.Semaphore
-
Returns true
if this semaphore has fairness set true.
- isFastScale() - Static method in class com.codename1.io.services.ImageDownloadService
-
Fast scaling uses runtime draw scaling rather than the Image scaled method.
- isFile() - Method in class java.io.File
-
Tests whether the file denoted by this abstract pathname is a normal
file.
- isFileWriteEnabled() - Method in class com.codename1.io.Log
-
Indicates whether GCF's file writing should be used to generate the log file
- isFillLastRow() - Method in class com.codename1.ui.layouts.GridLayout
-
When set to true makes the grid layout fill the last row of the layout
entirely if the number of elements in that row is bigger.
- isFillRows() - Method in class com.codename1.ui.layouts.FlowLayout
-
Indicates whether the layout manager should try to fill up the available space
in the row
- isFinal(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
final
modifier, false
otherwise.
- isFinished() - Method in class com.codename1.ui.animations.Motion
-
Returns true if the motion has run its course and has finished meaning the current
time is greater than startTime + duration.
- isFinished() - Method in class com.sun.lwuit.animations.Motion
-
Returns true if the motion has run its course and has finished meaning the current
time is greater than startTime + duration.
- isFinite(double) - Static method in class java.lang.Double
-
Returns true
if the argument is a finite floating-point
value; returns false
otherwise (for NaN and infinity
arguments).
- isFinite(float) - Static method in class java.lang.Float
-
Returns true
if the argument is a finite floating-point
value; returns false
otherwise (for NaN and infinity
arguments).
- isFirst() - Method in interface java.sql.ResultSet
-
Retrieves whether the cursor is on the first row of
this ResultSet
object.
- isFisheye() - Method in class com.codename1.ui.list.GenericListCellRenderer
-
In fisheye rendering mode the renderer maintains selected component drawing
- isFixed() - Method in class java.time.temporal.ValueRange
-
Is the value range fixed and fully known.
- isFixedOffset() - Method in class java.time.zone.ZoneRules
-
Checks of the zone rules are fixed, such that the offset never varies.
- isFlatten() - Method in class com.codename1.ui.Component
-
Makes the component effectively opaque by blending the backgrounds into an image in memory so the layer of underlying components
is only drawn once when this component is repainted.
- isFocusable() - Method in class com.codename1.ui.Component
-
Returns true if this component can receive focus and is enabled
- isFocusable() - Method in class com.sun.lwuit.Component
-
Returns true if this component can receive focus and is enabled
- isFocusable() - Method in class java.awt.Component
-
Returns whether this Component can be focused.
- isFocusCycleRoot(Container) - Method in class java.awt.Component
-
Returns whether the specified Container is the focus cycle root of this
Component's focus traversal cycle.
- isFocusCycleRoot(Container) - Method in class java.awt.Container
-
Returns whether the specified Container is the focus cycle root of this
Container's focus traversal cycle.
- isFocusCycleRoot() - Method in class java.awt.Container
-
Returns whether this Container is the root of a focus traversal cycle.
- isFocusOwner() - Method in class java.awt.Component
-
Returns true
if this Component
is the
focus owner.
- isFocusPainted() - Method in class com.sun.lwuit.Component
-
- isFocusScrolling() - Method in class com.codename1.ui.Form
-
Indicates whether lists and containers should scroll only via focus and thus "jump" when
moving to a larger component as was the case in older versions of Codename One.
- isFocusScrolling() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether lists and containers should scroll only via focus and thus "jump" when
moving to a larger component as was the case in older versions of Codename One.
- isFocusScrolling() - Method in class com.sun.lwuit.Form
-
Indicates whether lists and containers should scroll only via focus and thus "jump" when
moving to a larger component as was the case in older versions of LWUIT.
- isFocusScrolling() - Method in class com.sun.lwuit.plaf.LookAndFeel
-
Indicates whether lists and containers should scroll only via focus and thus "jump" when
moving to a larger component as was the case in older versions of LWUIT.
- isFocusTraversable() - Method in class java.awt.Component
-
- isFocusTraversalPolicySet() - Method in class java.awt.Container
-
Returns whether the focus traversal policy has been explicitly set for
this Container.
- isFollowRedirects() - Method in class com.codename1.io.ConnectionRequest
-
- isFont(String) - Method in class com.codename1.ui.util.Resources
-
Returns true if this is a font resource
- isFont(String) - Method in class com.sun.lwuit.util.Resources
-
Returns true if this is a font resource
- isFontSet() - Method in class java.awt.Component
-
Returns whether the font has been explicitly set for this Component.
- isForceGroup() - Method in class com.codename1.ui.ComponentGroup
-
Component grouping can be an element from the theme but can be forced manually
for a specific group
- isForegroundSet() - Method in class java.awt.Component
-
Returns whether the foreground color has been explicitly set for this
Component.
- isFormatSupported(String) - Method in class com.codename1.ui.util.ImageIO
-
Indicates if the given format for output is supported by this implementation
- isForwardCheckingSupported() - Method in interface java.security.cert.CertPathChecker
-
Indicates if forward checking is supported.
- isForwardCheckingSupported() - Method in class java.security.cert.PKIXCertPathChecker
-
Indicates if forward checking is supported.
- isForwardSlide() - Method in class com.codename1.ui.animations.CommonTransitions
-
Indicates the slide/cover transition direction
- isFullScreen() - Method in interface com.codename1.media.Media
-
This method returns true if this video is in full screen mode.
- isFullScreen() - Method in class com.sun.lwuit.MediaComponent
-
Indicates the fullscreen mode
- isGap() - Method in class java.time.zone.ZoneOffsetTransition
-
Does this transition represent a gap in the local time-line.
- isGrabsPointerEvents() - Method in class com.codename1.ui.Component
-
This property is useful for blocking in z-order touch events, sometimes we might want to grab touch events in
a specific component without making it focusable.
- isGroupingUsed() - Method in class java.text.NumberFormat
-
Returns true if grouping is used in this format.
- isGrowByContent() - Method in class com.codename1.ui.TextArea
-
Indicates that the text area should "grow" in height based on the content beyond the
limits indicate by the rows variable
- isGrowByContent() - Method in class com.sun.lwuit.TextArea
-
Indicates that the text area should "grow" in height based on the content beyond the
limits indicate by the rows variable
- isGrowHorizontally() - Method in class com.codename1.ui.table.TableLayout
-
Indicates whether the table layout should grow horizontally to take up available space by stretching the last column
- isHeldByCurrentThread() - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries if this lock is held by the current thread.
- isHeldByCurrentThread() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
-
Queries if this write lock is held by the current thread.
- isHeldExclusively() - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns true
if synchronization is held exclusively with
respect to the current (calling) thread.
- isHeldExclusively() - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns true
if synchronization is held exclusively with
respect to the current (calling) thread.
- isHidden(String) - Method in class com.codename1.io.FileSystemStorage
-
Indicates the hidden state of the file
- isHidden() - Method in class java.io.File
-
Tests whether the file named by this abstract pathname is a hidden
file.
- isHidden() - Method in interface java.nio.file.attribute.DosFileAttributes
-
Returns the value of the hidden attribute.
- isHidden(Path) - Static method in class java.nio.file.Files
-
Tells whether or not a file is considered hidden.
- isHidden(Path) - Method in class java.nio.file.spi.FileSystemProvider
-
Tells whether or not a file is considered hidden.
- isHidden() - Method in interface javax.microedition.io.file.FileConnection
-
- isHideInPortrait() - Method in class com.codename1.ui.Component
-
Indicates that this component and all its children should be hidden when the device is switched to portrait mode
- isHighSurrogate(char) - Static method in class java.lang.Character
-
- isHorizontal() - Method in class com.codename1.ui.ComponentGroup
-
Indicates that the component group should be horizontal by using the BoxLayout Y
- isHorizontalCover() - Method in class com.codename1.ui.animations.CommonTransitions
-
Returns true if this is a horizontal cover transition
- isHorizontalLayout() - Method in class com.codename1.components.MultiButton
-
Indicates whether the first two labels are be side by side
- isHorizontalSlide() - Method in class com.codename1.ui.animations.CommonTransitions
-
Returns true if this is a horizontal slide transition
- isHttpOnly() - Method in class com.codename1.io.Cookie
-
- isHttpOnly() - Method in class java.net.HttpCookie
-
Returns true
if this cookie contains the HttpOnly
attribute.
- isId() - Method in interface org.w3c.dom.Attr
-
Returns whether this attribute is known to be of type ID (i.e.
- isIdAttribute(int) - Method in class javax.xml.validation.TypeInfoProvider
-
Returns true
if the specified attribute is determined
to be ID.
- isIdentifierIgnorable(char) - Static method in class java.lang.Character
-
Determines if the specified character should be regarded as
an ignorable character in a Java identifier or a Unicode identifier.
- isIdentifierIgnorable(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) should be regarded as
an ignorable character in a Java identifier or a Unicode identifier.
- isIdeographic(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a CJKV
(Chinese, Japanese, Korean and Vietnamese) ideograph, as defined by
the Unicode Standard.
- isIgnorableWhiteSpace() - Method in interface javax.xml.stream.events.Characters
-
Return true if this is ignorableWhiteSpace.
- isIgnoreFocusComponentWhenUnfocused() - Method in class com.codename1.ui.List
-
Indicates whether the list should not paint the focus component if the list
itself has no focus.
- isIgnoreFocusComponentWhenUnfocused() - Method in class com.sun.lwuit.List
-
Indicates whether the list should not paint the focus component if the list
itself has no focus.
- isIgnoringComments() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which ignores comments.
- isIgnoringElementContentWhitespace() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which ignore ignorable whitespace in element content.
- isImage(String) - Method in class com.codename1.ui.util.Resources
-
Returns true if this is an image resource
- isImage(String) - Method in class com.sun.lwuit.util.Resources
-
Returns true if this is an image resource
- isImmediateInputMode(String) - Method in class com.codename1.ui.TextField
-
Returns true if the given input mode should commit immediately or
wait for the commit timeout
- isImmediateInputMode(String) - Method in class com.sun.lwuit.TextField
-
Returns true if the given input mode should commit immediately or
wait for the commit timeout
- isImplicit() - Method in class java.lang.reflect.Parameter
-
Returns true
if this parameter is implicitly declared
in source code; returns false
otherwise.
- isInboundDone() - Method in class javax.net.ssl.SSLEngine
-
- isInClippingRegion(Graphics) - Method in class com.codename1.ui.Component
-
- isIncludeHeader() - Method in class com.codename1.ui.table.Table
-
Indicates whether the table should render a table header as the first row
- isIncludeHeader() - Method in class com.sun.lwuit.table.Table
-
Indicates whether the table should render a table header as the first row
- isIncludeSelectCancel() - Method in class com.codename1.ui.ComboBox
-
Indicates whethe the soft buttons for select/cancel should appear for the combo box
- isIncludeSelectCancel() - Method in class com.sun.lwuit.ComboBox
-
Indicates whethe the soft buttons for select/cancel should appear for the combo box
- isIncludeYear() - Method in class com.codename1.ui.spinner.DateTimeSpinner
-
- isInfinite() - Method in class com.codename1.ui.Slider
-
The infinite slider functionality is used to animate
progress for which there is no defined value.
- isInfinite(double) - Static method in class java.lang.Double
-
Returns true
if the specified number is infinitely
large in magnitude, false
otherwise.
- isInfinite() - Method in class java.lang.Double
-
Returns true
if this Double
value is
infinitely large in magnitude, false
otherwise.
- isInfinite(float) - Static method in class java.lang.Float
-
Returns true
if the specified number is infinitely
large in magnitude, false
otherwise.
- isInfinite() - Method in class java.lang.Float
-
Returns true
if this Float
value is
infinitely large in magnitude, false
otherwise.
- isInitialized() - Static method in class com.codename1.io.Storage
-
Returns true if the storage is initialized
- isInitialized() - Method in class com.codename1.ui.Component
-
Indicates if the component is in the initialized state, a component is initialized
when its initComponent() method was invoked.
- isInitialized() - Static method in class com.codename1.ui.Display
-
This method returns true if the Display is initialized.
- isInitialized() - Method in class com.sun.lwuit.Component
-
Indicates if the component is in the initialized state, a component is initialized
when its initComponent() method was invoked.
- isInputShutdown() - Method in class java.net.Socket
-
Returns whether the read-half of the socket connection is closed.
- isInstance(Object) - Method in class java.lang.Class
-
isInstance checks if "obj instanceof >>this<<" would result in
true, i.e., if this is a class, obj's class is equal to or a
subclass of this, otherwise if this is an interface, obj's class
implements the interface, otherwise if this is an array type,
obj's type is an array that is assignment compatible to this.
- isInterface() - Method in class java.lang.Class
-
Test if this class is an interface.
- isInterface(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
interface
modifier, false
otherwise.
- isInterrupted() - Method in class java.lang.Thread
-
Tests whether this thread has been interrupted.
- isIntValue() - Method in class java.time.temporal.ValueRange
-
Checks if all values in the range fit in an int
.
- isInvertFirstTwoEntries() - Method in class com.codename1.components.MultiButton
-
Inverts the order of the first two entries so the second line appears first.
- isIPv4CompatibleAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is an
IPv4 compatible IPv6 address.
- isISOControl(char) - Static method in class java.lang.Character
-
Determines if the specified character is an ISO control
character.
- isISOControl(int) - Static method in class java.lang.Character
-
Determines if the referenced character (Unicode code point) is an ISO control
character.
- isItemListingSupported() - Method in class com.codename1.payment.Purchase
-
Indicates whether the payment platform supports things such as "item listing" or
requires that items be coded into the system.
- isJavaIdentifierPart(char) - Static method in class java.lang.Character
-
Determines if the specified character may be part of a Java
identifier as other than the first character.
- isJavaIdentifierPart(int) - Static method in class java.lang.Character
-
Determines if the character (Unicode code point) may be part of a Java
identifier as other than the first character.
- isJavaIdentifierStart(char) - Static method in class java.lang.Character
-
Determines if the specified character is
permissible as the first character in a Java identifier.
- isJavaIdentifierStart(int) - Static method in class java.lang.Character
-
Determines if the character (Unicode code point) is
permissible as the first character in a Java identifier.
- isJavaLetter(char) - Static method in class java.lang.Character
-
- isJavaLetterOrDigit(char) - Static method in class java.lang.Character
-
- isKeepResourcesInRam() - Method in class com.codename1.ui.util.UIBuilder
-
Indicates that the UIBuilder should cache resources in memory and never release them.
- isKeyEntry(String) - Method in class java.security.KeyStore
-
Returns true if the entry identified by the given alias
was created by a call to setKeyEntry
,
or created by a call to setEntry
with a
PrivateKeyEntry
or a SecretKeyEntry
.
- isKilled() - Method in class com.codename1.io.ConnectionRequest
-
- isL10N(String) - Method in class com.codename1.ui.util.Resources
-
Returns true if this is a generic data resource
- isL10N(String) - Method in class com.sun.lwuit.util.Resources
-
Returns true if this is a generic data resource
- isLast() - Method in interface java.sql.ResultSet
-
Retrieves whether the cursor is on the last row of
this ResultSet
object.
- isLeadingEdge() - Method in class java.awt.font.TextHitInfo
-
Returns true
if the leading edge of the character was
hit.
- isLeaf(Object) - Method in class com.codename1.components.FileTreeModel
-
- isLeaf(Object) - Method in interface com.codename1.ui.tree.TreeModel
-
Is the node a leaf or a folder
- isLeaf(Object) - Method in interface com.sun.lwuit.tree.TreeModel
-
Is the node a leaf or a folder
- isLeap(long) - Static method in class java.time.Year
-
Checks if the year is a leap year, according to the ISO proleptic
calendar system rules.
- isLeap() - Method in class java.time.Year
-
Checks if the year is a leap year, according to the ISO proleptic
calendar system rules.
- isLeapYear() - Method in interface java.time.chrono.ChronoLocalDate
-
Checks if the year is a leap year, as defined by the calendar system.
- isLeapYear(long) - Method in interface java.time.chrono.Chronology
-
Checks if the specified year is a leap year.
- isLeapYear(long) - Method in class java.time.chrono.HijrahChronology
-
- isLeapYear() - Method in class java.time.chrono.HijrahDate
-
Checks if the year is a leap year, according to the Hijrah calendar system rules.
- isLeapYear(long) - Method in class java.time.chrono.IsoChronology
-
Checks if the year is a leap year, according to the ISO proleptic
calendar system rules.
- isLeapYear(long) - Method in class java.time.chrono.JapaneseChronology
-
Checks if the specified year is a leap year.
- isLeapYear(long) - Method in class java.time.chrono.MinguoChronology
-
Checks if the specified year is a leap year.
- isLeapYear(long) - Method in class java.time.chrono.ThaiBuddhistChronology
-
Checks if the specified year is a leap year.
- isLeapYear() - Method in class java.time.LocalDate
-
Checks if the year is a leap year, according to the ISO proleptic
calendar system rules.
- isLeapYear() - Method in class java.time.YearMonth
-
Checks if the year is a leap year, according to the ISO proleptic
calendar system rules.
- isLeapYear(int) - Method in class java.util.GregorianCalendar
-
Determines if the given year is a leap year.
- isLeftAndRightEditingTrigger() - Method in class com.codename1.ui.TextField
-
Indicates whether the left/right keys will trigger editing, this is true by default.
- isLeftAndRightEditingTrigger() - Method in class com.sun.lwuit.TextField
-
Indicates whether the left/right keys will trigger editing, this is true by default.
- isLeftKey(int) - Method in class com.codename1.maps.MapComponent
-
Returns true if this is a left keycode
- isLeftToRight() - Method in class java.text.Bidi
-
Return true if the line is all left-to-right text and the base direction is left-to-right.
- isLenient() - Method in class java.text.DateFormat
-
Tell whether date/time parsing is to be lenient.
- isLenient() - Method in class java.util.Calendar
-
Tells whether date/time interpretation is to be lenient.
- isLetter(char) - Static method in class java.lang.Character
-
Determines if the specified character is a letter.
- isLetter(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a letter.
- isLetterOrDigit(char) - Static method in class java.lang.Character
-
Determines if the specified character is a letter or digit.
- isLetterOrDigit(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a letter or digit.
- isLightMode() - Method in class com.sun.lwuit.Display
-
- isLightweight() - Method in class java.awt.Component
-
A lightweight component doesn't have a native toolkit peer.
- isLinearMotion() - Method in class com.codename1.ui.animations.CommonTransitions
-
Indicates whether the motion associated with this transition is linear or spline motion
- isLinearMotion() - Method in class com.sun.lwuit.animations.CommonTransitions
-
Indicates whether the motion associated with this transition is linear or spline motion
- isLinkLocalAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is an link local address.
- isLinkLocalAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is an link local address.
- isLinkLocalAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is an link local address.
- isLoaded() - Method in class java.nio.MappedByteBuffer
-
Tells whether or not this buffer's content is resident in physical
memory.
- isLocalClass() - Method in class java.lang.Class
-
Returns true
if and only if the underlying class
is a local class.
- isLocked() - Method in class com.codename1.ui.EncodedImage
-
- isLocked() - Method in class com.codename1.ui.Image
-
Returns true if the image is locked
- isLocked() - Method in class java.util.concurrent.locks.ReentrantLock
-
Queries if this lock is held by any thread.
- isLoggable(LogRecord) - Method in interface java.util.logging.Filter
-
Check if a given log record should be published.
- isLoggable(LogRecord) - Method in class java.util.logging.Handler
-
Check if this Handler would actually log a given LogRecord.
- isLoggable(Level) - Method in class java.util.logging.Logger
-
Check if a message of the given level would actually be logged
by this logger.
- isLoggable(LogRecord) - Method in class java.util.logging.MemoryHandler
-
Check if this Handler would actually log a given
LogRecord into its internal buffer.
- isLoggable(LogRecord) - Method in class java.util.logging.StreamHandler
-
Check if this Handler would actually log a given LogRecord.
- isLoggedIn() - Method in class com.codename1.social.FacebookConnect
-
Indicates if the user is currently logged in
- isLongerThan(Duration) - Method in class javax.xml.datatype.Duration
-
Checks if this duration object is strictly longer than
another Duration
object.
- isLongEvent() - Method in class com.codename1.ui.events.ActionEvent
-
Returns true for long click or long pointer event
- isLongPointerPressActionEnabled() - Method in class com.codename1.ui.List
-
Enable/disable list action on long pointer press event
- isLoop() - Method in class com.codename1.ui.animations.Timeline
-
Indicates if the image should loop
- isLoop() - Method in class com.sun.lwuit.StaticAnimation
-
Deprecated.
Indicates whether the animation will run in a loop or run only once
- isLoopback() - Method in class java.net.NetworkInterface
-
Returns whether a network interface is a loopback interface.
- isLoopbackAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is a loopback address.
- isLoopbackAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is a loopback address.
- isLoopbackAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is a loopback address.
- isLowerCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is a lowercase character.
- isLowerCase(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a
lowercase character.
- isLowered3DText() - Method in class com.codename1.ui.plaf.Style
-
Returns true if the 3D text decoration is on, false otherwise
- isLowSurrogate(char) - Static method in class java.lang.Character
-
- isMaintainAspectRatio() - Method in class com.codename1.io.services.ImageDownloadService
-
- isMalformed() - Method in class java.nio.charset.CoderResult
-
Tells whether or not this object describes a malformed-input error.
- isManagedPaymentSupported() - Method in class com.codename1.payment.Purchase
-
Indicates whether the purchasing platform supports managed payments which
work by picking products that are handled by the servers/OS of the platform vendor.
- isManualPaymentSupported() - Method in class com.codename1.payment.Purchase
-
Indicates whether the purchasing platform supports manual payments which
are just payments of a specific amount of money.
- isManualRedirect() - Method in class com.codename1.io.MultipartRequest
-
By default redirect responses (302 etc.) are handled manually in multipart requests
- isMarked() - Method in class java.util.concurrent.atomic.AtomicMarkableReference
-
Returns the current value of the mark.
- isMarkToday() - Method in class com.codename1.ui.spinner.DateTimeSpinner
-
- isMaximumSizeSet() - Method in class java.awt.Component
-
Returns true if the maximum size has been set to a non-null
value otherwise returns false.
- isMCGlobal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has global scope.
- isMCGlobal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has global scope.
- isMCGlobal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has global scope.
- isMCLinkLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has link scope.
- isMCLinkLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has link scope.
- isMCLinkLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has link scope.
- isMCNodeLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has node scope.
- isMCNodeLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has node scope.
- isMCNodeLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has node scope.
- isMCOrgLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has organization scope.
- isMCOrgLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has organization scope.
- isMCOrgLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has organization scope.
- isMCSiteLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has site scope.
- isMCSiteLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has site scope.
- isMCSiteLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has site scope.
- isMemberClass() - Method in class java.lang.Class
-
Returns true
if and only if the underlying class
is a member class.
- isMenuOpen() - Method in class com.codename1.ui.SideMenuBar
-
Returns true if the Menu is currently open
- isMetaDown() - Method in class java.awt.event.InputEvent
-
Returns whether or not the Meta modifier is down on this event.
- isMidnightEndOfDay() - Method in class java.time.zone.ZoneOffsetTransitionRule
-
Is the transition local time midnight at the end of day.
- isMinimized() - Method in class com.codename1.ui.Display
-
Indicates whether an application is minimized
- isMinimized() - Method in class com.sun.lwuit.Display
-
Indicates whether an application is minimized
- isMinimizeOnBack() - Method in class com.codename1.ui.Form
-
When set to true the physical back button will minimize the application
- isMinimizeOnBack() - Method in class com.codename1.ui.MenuBar
-
When set to true the physical back button will minimize the application
- isMinimumSizeSet() - Method in class java.awt.Component
-
Returns whether or not setMinimumSize
has been
invoked with a non-null value.
- isMirrored(char) - Static method in class java.lang.Character
-
Determines whether the character is mirrored according to the
Unicode specification.
- isMirrored(int) - Static method in class java.lang.Character
-
Determines whether the specified character (Unicode code point)
is mirrored according to the Unicode specification.
- isMixed() - Method in class java.text.Bidi
-
Return true if the line is not left-to-right or right-to-left.
- isModified() - Method in class com.codename1.ui.plaf.Style
-
Returns true if the style was modified manually after it was created by the
look and feel.
- isModified() - Method in class com.sun.lwuit.plaf.Style
-
Returns true if the style was modified manually after it was created by the
look and feel.
- isMonthDayYear() - Method in class com.codename1.ui.spinner.DateSpinner
-
- isMulticastAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is an
IP multicast address.
- isMulticastAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is an IP multicast
address.
- isMulticastAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is an
IP multicast address.
- isMultiKeyMode() - Method in class com.codename1.ui.Display
-
When set to true Codename One allows multiple hardware keys to be pressed at once,
this isn't on by default since it can trigger some complexities with UI navigation to/from
native code
- isMultilineMode() - Method in class com.codename1.ui.tree.Tree
-
Toggles a mode where rows in the tree can be broken since span buttons will
be used instead of plain buttons.
- isMultiTouch() - Method in class com.codename1.ui.Display
-
Indicates whether the device supports multi-touch events, this is only
relevant when touch events are supported
- isMultiTouch() - Method in class com.sun.lwuit.Display
-
Indicates whether the device supports multi-touch events, this is only
relevant when touch events are supported
- isMutableRendererBackgrounds() - Method in class com.codename1.ui.List
-
Indicates that the background of a cell renderer might mutate between one entry and the next,
it is recommended that this flag remains false for performance reasons.
- isMutableRendererBackgrounds() - Method in class com.sun.lwuit.List
-
Indicates that the background of a cell renderer might mutate between one entry and the next,
it is recommended that this flag remains false for performance reasons.
- isNamePresent() - Method in class java.lang.reflect.Parameter
-
Returns true if the parameter has a name according to the class
file; returns false otherwise.
- isNamespace() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is a Namespace.
- isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilder
-
Indicates whether or not this parser is configured to
understand namespaces.
- isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which are namespace aware.
- isNamespaceAware() - Method in class javax.xml.parsers.SAXParser
-
Indicates whether or not this parser is configured to
understand namespaces.
- isNamespaceAware() - Method in class javax.xml.parsers.SAXParserFactory
-
Indicates whether or not the factory is configured to produce
parsers which are namespace aware.
- isNamespaceDeclUris() - Method in class org.xml.sax.helpers.NamespaceSupport
-
Returns true if namespace declaration attributes are placed into
a namespace.
- isNaN(double) - Static method in class java.lang.Double
-
Returns true
if the specified number is a
Not-a-Number (NaN) value, false
otherwise.
- isNaN() - Method in class java.lang.Double
-
Returns true
if this Double
value is
a Not-a-Number (NaN), false
otherwise.
- isNaN(float) - Static method in class java.lang.Float
-
Returns true
if the specified number is a
Not-a-Number (NaN) value, false
otherwise.
- isNaN() - Method in class java.lang.Float
-
Returns true
if this Float
value is a
Not-a-Number (NaN), false
otherwise.
- isNative(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
native
modifier, false
otherwise.
- isNativeBrowserSupported() - Static method in class com.codename1.ui.BrowserComponent
-
Returns true if the platform supports embedding a native browser component
- isNativeCommands() - Method in class com.codename1.ui.Display
-
- isNativeInputSupported() - Method in class com.codename1.ui.Display
-
Indicates whether the device supports native in place editing in which case
lightweight input logic shouldn't be used for input.
- isNativeInputSupported() - Method in class com.sun.lwuit.Display
-
Indicates whether the device supports native in place editing in which case
lightweight input logic shouldn't be used for input.
- isNativeMethod() - Method in class java.lang.StackTraceElement
-
Returns true if the method containing the execution point
represented by this stack trace element is a native method.
- isNativePickerTypeSupported(int) - Method in class com.codename1.ui.Display
-
Indicates whether the native picker dialog is supported for the given type
which can include one of PICKER_TYPE_DATE_AND_TIME, PICKER_TYPE_TIME, PICKER_TYPE_DATE
- isNativePlayerMode() - Method in interface com.codename1.media.Media
-
Returns true if this Video Media is in Native player mode.
- isNativeScrollingEnabled() - Method in class com.codename1.ui.BrowserComponent
-
This method is unreliable and is only here for consistency with setNativeScrollingEnabled.
- isNativeShareSupported() - Method in class com.codename1.ui.Display
-
Indicates if the underlying platform supports sharing capabilities
- isNativeTitle() - Method in class com.codename1.ui.Display
-
Indicates if the title of the Form is native title(in android ICS devices
if the command behavior is native the ActionBar is used to display the title
and the menu)
- isNativeVideoPlayerControlsIncluded() - Method in class com.codename1.ui.Display
-
Indicates if the native video player includes its own play/pause etc.
- isNegative() - Method in interface java.time.chrono.ChronoPeriod
-
Checks if any of the supported units of this period are negative.
- isNegative() - Method in class java.time.Duration
-
Checks if this duration is negative, excluding zero.
- isNegative() - Method in class java.time.Period
-
Checks if any of the three units of this period are negative.
- isNormalized(CharSequence, Normalizer.Form) - Static method in class java.text.Normalizer
-
Determines if the given sequence of char values is normalized.
- isNormalizeNames() - Method in class com.codename1.io.Storage
-
Indicates whether characters that are typically illegal in filesystems should
be sanitized and replaced with underscore
- isNoTextMode() - Method in class com.codename1.components.OnOffSwitch
-
iOS 7 changed the switch to not include any text
- isNotificationSupported() - Method in class com.codename1.ui.Display
-
Indicates whether the notify status bar method will present a notification to the user
- isNull(Object) - Static method in class java.util.Objects
-
Returns true
if the provided reference is null
otherwise
returns false
.
- isNullable(int) - Method in interface java.sql.ParameterMetaData
-
Retrieves whether null values are allowed in the designated parameter.
- isNullable(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates the nullability of values in the designated column.
- isNumericKeyActions() - Method in class com.codename1.ui.List
-
Indicate whether pressing the number keys should trigger an action
- isNumericKeyActions() - Method in class com.sun.lwuit.List
-
Indicate whether pressing the number keys should trigger an action
- isNumericMonths() - Method in class com.codename1.ui.spinner.DateSpinner
-
- ISO - Static variable in class java.time.temporal.WeekFields
-
The ISO-8601 definition, where a week starts on Monday and the first week
has a minimum of 4 days.
- ISO8601 - Static variable in class com.codename1.l10n.DateFormatPatterns
-
Pattern for parsing/formatting ISO8601 timestamp.
- ISO_8859_1 - Static variable in class java.nio.charset.StandardCharsets
-
ISO Latin Alphabet No.
- ISO_DATE - Static variable in class java.time.format.DateTimeFormatter
-
The ISO date formatter that formats or parses a date with the
offset if available, such as '2011-12-03' or '2011-12-03+01:00'.
- ISO_DATE_TIME - Static variable in class java.time.format.DateTimeFormatter
-
The ISO-like date-time formatter that formats or parses a date-time with
the offset and zone if available, such as '2011-12-03T10:15:30',
'2011-12-03T10:15:30+01:00' or '2011-12-03T10:15:30+01:00[Europe/Paris]'.
- ISO_INSTANT - Static variable in class java.time.format.DateTimeFormatter
-
The ISO instant formatter that formats or parses an instant in UTC,
such as '2011-12-03T10:15:30Z'.
- ISO_LOCAL_DATE - Static variable in class java.time.format.DateTimeFormatter
-
The ISO date formatter that formats or parses a date without an
offset, such as '2011-12-03'.
- ISO_LOCAL_DATE_TIME - Static variable in class java.time.format.DateTimeFormatter
-
The ISO date-time formatter that formats or parses a date-time without
an offset, such as '2011-12-03T10:15:30'.
- ISO_LOCAL_TIME - Static variable in class java.time.format.DateTimeFormatter
-
The ISO time formatter that formats or parses a time without an
offset, such as '10:15' or '10:15:30'.
- ISO_OFFSET_DATE - Static variable in class java.time.format.DateTimeFormatter
-
The ISO date formatter that formats or parses a date with an
offset, such as '2011-12-03+01:00'.
- ISO_OFFSET_DATE_TIME - Static variable in class java.time.format.DateTimeFormatter
-
The ISO date-time formatter that formats or parses a date-time with an
offset, such as '2011-12-03T10:15:30+01:00'.
- ISO_OFFSET_TIME - Static variable in class java.time.format.DateTimeFormatter
-
The ISO time formatter that formats or parses a time with an
offset, such as '10:15+01:00' or '10:15:30+01:00'.
- ISO_ORDINAL_DATE - Static variable in class java.time.format.DateTimeFormatter
-
The ISO date formatter that formats or parses the ordinal date
without an offset, such as '2012-337'.
- ISO_TIME - Static variable in class java.time.format.DateTimeFormatter
-
The ISO time formatter that formats or parses a time, with the
offset if available, such as '10:15', '10:15:30' or '10:15:30+01:00'.
- ISO_WEEK_DATE - Static variable in class java.time.format.DateTimeFormatter
-
The ISO date formatter that formats or parses the week-based date
without an offset, such as '2012-W48-6'.
- ISO_ZONED_DATE_TIME - Static variable in class java.time.format.DateTimeFormatter
-
The ISO-like date-time formatter that formats or parses a date-time with
offset and zone, such as '2011-12-03T10:15:30+01:00[Europe/Paris]'.
- isObjectModelSupported(String) - Method in class javax.xml.xpath.XPathFactory
-
Is specified object model supported by this XPathFactory
?
- IsoChronology - Class in java.time.chrono
-
The ISO calendar system.
- IsoEra - Enum in java.time.chrono
-
An era in the ISO calendar system.
- IsoFields - Class in java.time.temporal
-
Fields and units specific to the ISO-8601 calendar system,
including quarter-of-year and week-based-year.
- isOpaque() - Method in class com.codename1.components.ReplaceableImage
-
- isOpaque() - Method in class com.codename1.ui.EncodedImage
-
- isOpaque() - Method in class com.codename1.ui.Image
-
Indicates whether this image is opaque or not
- isOpaque() - Method in class com.codename1.ui.RGBImage
-
Indicates if an image should be treated as opaque, this can improve support
for fast drawing of RGB images without alpha support.
- isOpaque() - Method in class com.codename1.ui.ScaledImage
-
- isOpaque() - Method in class com.sun.lwuit.EncodedImage
-
- isOpaque() - Method in class com.sun.lwuit.Image
-
Indicates whether this image is opaque or not
- isOpaque() - Method in class com.sun.lwuit.RGBImage
-
Indicates if an image should be treated as opaque, this can improve support
for fast drawing of RGB images without alpha support.
- isOpaque() - Method in class com.sun.lwuit.ScaledImage
-
- isOpaque() - Method in class java.awt.Component
-
Returns true if this component is completely opaque, returns
false by default.
- isOpaque() - Method in class java.net.URI
-
Tells whether or not this URI is opaque.
- isOpen() - Method in interface java.nio.channels.Channel
-
Tells whether or not this channel is open.
- isOpen() - Method in class java.nio.channels.Selector
-
Tells whether or not this selector is open.
- isOpen() - Method in class java.nio.channels.spi.AbstractInterruptibleChannel
-
- isOpen() - Method in class java.nio.channels.spi.AbstractSelector
-
- isOpen() - Method in class java.nio.file.FileSystem
-
Tells whether or not this file system is open.
- isOpen() - Method in interface javax.microedition.io.file.FileConnection
-
- isOppositeSide() - Method in class com.codename1.ui.Button
-
Places the check box or radio button on the opposite side at the far end
- isOppositeSide() - Method in class com.codename1.ui.CheckBox
-
Places the check box on the opposite side at the far end
- isOppositeSide() - Method in class com.codename1.ui.RadioButton
-
Places the radio box on the opposite side at the far end
- isOther() - Method in interface java.nio.file.attribute.BasicFileAttributes
-
Tells whether the file is something other than a regular file, directory,
or symbolic link.
- isOutboundDone() - Method in class javax.net.ssl.SSLEngine
-
- isOutputShutdown() - Method in class java.net.Socket
-
Returns whether the write-half of the socket connection is closed.
- isOverflow() - Method in class java.nio.charset.CoderResult
-
Tells whether or not this object describes an overflow condition.
- isOverlap() - Method in class java.time.zone.ZoneOffsetTransition
-
Does this transition represent an overlap in the local time-line.
- isOverlapSupported() - Method in class com.codename1.ui.layouts.BorderLayout
-
- isOverlapSupported() - Method in class com.codename1.ui.layouts.CoordinateLayout
-
- isOverlapSupported() - Method in class com.codename1.ui.layouts.LayeredLayout
-
- isOverlapSupported() - Method in class com.codename1.ui.layouts.Layout
-
This method returns true if the Layout allows Components to
Overlap.
- isOverlapSupported() - Method in class com.sun.lwuit.layouts.CoordinateLayout
-
- isOverlapSupported() - Method in class com.sun.lwuit.layouts.Layout
-
This method returns true if the Layout allows Components to
Overlap.
- isOverline() - Method in class com.codename1.ui.plaf.Style
-
Returns true if the overline text decoration is on, false otherwise
- isOverwriteMode() - Method in class com.codename1.ui.TextField
-
Indicates that this is the overwrite mode
- isOverwriteMode() - Method in class com.sun.lwuit.TextField
-
Indicates that this is the overwrite mode
- isOwner() - Method in class com.codename1.cloud.CloudObject
-
Returns true if this object is owned by me or is world writeable
- isPaintOuterBorderFirst() - Method in class com.codename1.ui.plaf.Border
-
Allows toggling the order in which the outer and inner borders are painted for the Outer border type
- isParallel() - Method in interface java.util.stream.BaseStream
-
Returns whether this stream, if a terminal operation were to be executed,
would execute in parallel.
- isParityAdjusted(byte[], int) - Static method in class javax.crypto.spec.DESedeKeySpec
-
Checks if the given DES-EDE key, starting at offset
inclusive, is parity-adjusted.
- isParityAdjusted(byte[], int) - Static method in class javax.crypto.spec.DESKeySpec
-
Checks if the given DES key material, starting at offset
inclusive, is parity-adjusted.
- isParseBigDecimal() - Method in class java.text.DecimalFormat
-
- isParseIntegerOnly() - Method in class java.text.NumberFormat
-
Returns true if this format will parse numbers as integers only.
- isPausable() - Method in class com.codename1.io.ConnectionRequest
-
Return true from this method if this connection can be paused and resumed later on.
- isPause() - Method in class com.codename1.ui.animations.Timeline
-
Returns true when the timeline is paused
- isPause() - Method in class com.sun.lwuit.animations.Timeline
-
Returns true when the timeline is paused
- isPaused() - Method in class com.codename1.io.ConnectionRequest
-
- isPendingCommit() - Method in class com.codename1.ui.TextArea
-
Returns true if the text field is waiting for a commit on editing
- isPendingCommit() - Method in class com.codename1.ui.TextField
-
- isPendingCommit() - Method in class com.sun.lwuit.TextArea
-
Returns true if the text field is waiting for a commit on editing
- isPendingCommit() - Method in class com.sun.lwuit.TextField
-
- isPeriodic() - Method in interface java.util.concurrent.RunnableScheduledFuture
-
Returns true
if this task is periodic.
- isPinchToZoomEnabled() - Method in class com.codename1.ui.BrowserComponent
-
This method is unreliable and is only here for consistency with setPinchToZoomEnabled,
it will not return whether the platform supports pinch since this is very hard to detect
properly.
- isPlaying() - Method in interface com.codename1.media.Media
-
Returns true if the media is currently playing
- isPointToPoint() - Method in class java.net.NetworkInterface
-
Returns whether a network interface is a point to point interface.
- isPolicyMappingInhibited() - Method in class java.security.cert.PKIXParameters
-
Checks if policy mapping is inhibited.
- isPoolable() - Method in interface java.sql.Statement
-
Returns a value indicating whether the Statement
is poolable or not.
- isPopupTrigger() - Method in class java.awt.event.MouseEvent
-
Returns whether or not this mouse event is the popup menu
trigger event for the platform.
- isPortrait() - Method in class com.codename1.ui.Display
-
Returns true if the device is currently in portrait mode
- isPost() - Method in class com.codename1.io.ConnectionRequest
-
Returns true for a post operation and false for a get operation
- isPostRequest() - Method in class com.codename1.ui.html.DocumentInfo
-
Returns whether this document request is a POST request or not
- isPostRequest() - Method in class com.sun.lwuit.html.DocumentInfo
-
Returns whether this document request is a POST request or not
- isPreferredSizeSet() - Method in class java.awt.Component
-
Returns true if the preferred size has been set to a
non-null
value otherwise returns false.
- isPresent() - Method in class java.util.Optional
-
Return true
if there is a value present, otherwise false
.
- isPresent() - Method in class java.util.OptionalDouble
-
Return true
if there is a value present, otherwise false
.
- isPresent() - Method in class java.util.OptionalInt
-
Return true
if there is a value present, otherwise false
.
- isPresent() - Method in class java.util.OptionalLong
-
Return true
if there is a value present, otherwise false
.
- isPrimitive() - Method in class java.io.ObjectStreamField
-
Return true if this field has a primitive type.
- isPrimitive() - Method in class java.lang.Class
-
Test if this class represents a primitive type, i.e., it is one of
the values Boolean.TYPE, Character.TYPE, Byte.TYPE, Short.TYPE,
Integer.TYPE, Long.TYPE, Float.TYPE, Double.TYPE, and Void.TYPE.
- isPrintInput() - Method in class com.codename1.io.BufferedInputStream
-
Prints out all the data that passes through this stream to the console.
- isPrivate(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
private
modifier, false
otherwise.
- isProbablePrime(int) - Method in class java.math.BigInteger
-
Returns true
if this BigInteger is probably prime,
false
if it's definitely composite.
- isProcessingInstruction() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is a ProcessingInstruction.
- isProjected() - Method in class com.codename1.maps.Coord
-
Returns true if this is a projected Coordinate
- isPropertySupported(String) - Method in class javax.xml.stream.XMLInputFactory
-
Query the set of properties that this factory supports.
- isPropertySupported(String) - Method in class javax.xml.stream.XMLOutputFactory
-
Query the set of properties that this factory supports.
- isProtected(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
protected
modifier, false
otherwise.
- isProxyClass(Class<?>) - Static method in class java.lang.reflect.Proxy
-
Returns true if and only if the specified class was dynamically
generated to be a proxy class using the getProxyClass
method or the newProxyInstance
method.
- isPublic(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
public
modifier, false
otherwise.
- isPureTouch() - Method in class com.codename1.ui.Display
-
A pure touch device has no focus showing when the user is using the touch
interface.
- isPureTouch() - Method in class com.sun.lwuit.Display
-
A pure touch device has no focus showing when the user is using the touch
interface.
- isQueued(Thread) - Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
-
Returns true if the given thread is currently queued.
- isQueued(Thread) - Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
-
Returns true if the given thread is currently queued.
- isQueueIdle() - Method in class com.codename1.io.NetworkManager
-
Indicates that the network queue is idle
- isQuiescent() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true
if all worker threads are currently idle.
- isQwertyAutoDetect() - Static method in class com.codename1.ui.TextField
-
Indicates whether the text field should try to auto detect qwerty and
switch the qwerty device flag implicitly
- isQwertyAutoDetect() - Static method in class com.sun.lwuit.TextField
-
Indicates whether the text field should try to auto detect qwerty and
switch the qwerty device flag implicitly
- isQwertyDevice() - Static method in class com.codename1.ui.TextField
-
The default value for the qwerty flag so it doesn't need setting for every
text field individually.
- isQwertyDevice() - Static method in class com.sun.lwuit.TextField
-
The default value for the qwerty flag so it doesn't need setting for every
text field individually.
- isQwertyInput() - Method in class com.codename1.ui.TextArea
-
True is this is a qwerty device or a device that is currently in
qwerty mode.
- isQwertyInput() - Method in class com.codename1.ui.TextField
-
- isQwertyInput() - Method in class com.sun.lwuit.TextArea
-
True is this is a qwerty device or a device that is currently in
qwerty mode.
- isQwertyInput() - Method in class com.sun.lwuit.TextField
-
- isRadioButton() - Method in class com.codename1.components.MultiButton
-
Returns true if this is a radio button
- isRaised3DText() - Method in class com.codename1.ui.plaf.Style
-
Returns true if the 3D text decoration is on, false otherwise
- isReachable(int) - Method in class java.net.InetAddress
-
Test whether that address is reachable.
- isReachable(NetworkInterface, int, int) - Method in class java.net.InetAddress
-
Test whether that address is reachable.
- isReadable() - Method in class java.nio.channels.SelectionKey
-
Tests whether this key's channel is ready for reading.
- isReadable(Path) - Static method in class java.nio.file.Files
-
Tests whether a file is readable.
- isReadLocked() - Method in class java.util.concurrent.locks.StampedLock
-
Returns true
if the lock is currently held non-exclusively.
- isReadOnly() - Method in class java.nio.Buffer
-
Tells whether or not this buffer is read-only.
- isReadOnly() - Method in interface java.nio.file.attribute.DosFileAttributes
-
Returns the value of the read-only attribute.
- isReadOnly() - Method in class java.nio.file.FileStore
-
Tells whether this file store is read-only.
- isReadOnly() - Method in class java.nio.file.FileSystem
-
Tells whether or not this file system allows only read-only access to
its file stores.
- isReadOnly() - Method in class java.security.PermissionCollection
-
Returns true if this PermissionCollection object is marked as readonly.
- isReadOnly() - Method in interface java.sql.Connection
-
Retrieves whether this Connection
object is in read-only mode.
- isReadOnly() - Method in interface java.sql.DatabaseMetaData
-
Retrieves whether this database is in read-only mode.
- isReadOnly(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether the designated column is definitely not writable.
- isReadOnly() - Method in class javax.security.auth.Subject
-
Query whether this Subject
is read-only.
- isReadOnly() - Method in interface javax.sql.RowSet
-
Retrieves whether this RowSet
object is read-only.
- isReadRequest() - Method in class com.codename1.io.ConnectionRequest
-
- isReadResponseForErrors() - Method in class com.codename1.io.ConnectionRequest
-
When set to true the read response code will happen even for error codes such as 400 and 500
- isRectangleType() - Method in class com.codename1.ui.plaf.Border
-
Returns true if this border type is a rectangle border.
- isRedirecting() - Method in class com.codename1.io.ConnectionRequest
-
Returns true if this request is been redirected to a different url
- isRefundable(String) - Method in class com.codename1.payment.Purchase
-
Indicates whether refunding is possible when the SKU is purchased
- isRegistered() - Method in class java.nio.channels.SelectableChannel
-
Tells whether or not this channel is currently registered with any
selectors.
- isRegistered() - Method in class java.nio.channels.spi.AbstractSelectableChannel
-
- isRegistered() - Method in class java.nio.charset.Charset
-
- isRegularFile() - Method in interface java.nio.file.attribute.BasicFileAttributes
-
Tells whether the file is a regular file with opaque content.
- isRegularFile(Path, LinkOption...) - Static method in class java.nio.file.Files
-
Tests whether a file is a regular file with opaque content.
- isReleasable() - Method in interface java.util.concurrent.ForkJoinPool.ManagedBlocker
-
Returns true
if blocking is unnecessary.
- isRenderPercentageOnTop() - Method in class com.codename1.ui.Slider
-
Indicates that the value of the slider should be rendered with a percentage sign
on top of the slider.
- isRenderValueOnTop() - Method in class com.codename1.ui.Slider
-
- isReplaceMenu() - Method in class com.codename1.ui.TextField
-
Indicates whether the menu of the form should be replaced with the T9/Clear
commands for the duration of interactivity with the text field
- isReplaceMenu() - Method in class com.sun.lwuit.TextField
-
Indicates whether the menu of the form should be replaced with the T9/Clear
commands for the duration of interactivity with the text field
- isReplaceMenuDefault() - Static method in class com.codename1.ui.TextField
-
Indicates whether the menu of the form should be replaced with the T9/Clear
commands for the duration of interactivity with the text field
- isReplaceMenuDefault() - Static method in class com.sun.lwuit.TextField
-
Indicates whether the menu of the form should be replaced with the T9/Clear
commands for the duration of interactivity with the text field
- isRestoreSupported() - Method in class com.codename1.payment.Purchase
-
Indicates whether a purchase restore button is supported by the OS
- isReverseSoftButtons() - Method in class com.codename1.ui.MenuBar
-
Allows an individual form to reverse the layout direction of the softbuttons, this method is RTL
sensitive and might reverse the result based on RTL state
- isReverseSoftButtons() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Indicates whether softbuttons should be reversed from their default orientation
- isReverseSoftButtons() - Method in class com.sun.lwuit.Form
-
Allows an individual form to reverse the layout direction of the softbuttons, this method is RTL
sensitive and might reverse the result based on RTL state
- isReverseSoftButtons() - Method in class com.sun.lwuit.plaf.LookAndFeel
-
Indicates whether softbuttons should be reversed from their default orientation
- isRevocationEnabled() - Method in class java.security.cert.PKIXParameters
-
Checks the RevocationEnabled flag.
- isRevoked(Certificate) - Method in class java.security.cert.CRL
-
Checks whether the given certificate is on this CRL.
- isRightAlignNumbers() - Method in class com.codename1.ui.list.DefaultListCellRenderer
-
- isRightKey(int) - Method in class com.codename1.maps.MapComponent
-
Returns true if this is a right keycode
- isRightToLeft() - Method in class java.text.Bidi
-
Return true if the line is all right-to-left text, and the base direction is right-to-left.
- isRTL() - Method in class com.codename1.ui.Component
-
Is the component a bidi RTL component
- isRTL(char) - Method in class com.codename1.ui.Display
-
Returns true if the given character is an RTL character
- isRTL() - Method in class com.codename1.ui.plaf.LookAndFeel
-
Use this to check if the LookAndFeel is in RTL mode
- isRTL() - Method in class com.sun.lwuit.Component
-
Is the component a bidi RTL component
- isRTL(char) - Method in class com.sun.lwuit.Display
-
Returns true if the given character is an RTL character
- isRTL() - Method in class com.sun.lwuit.plaf.LookAndFeel
-
Use this to check if the LookAndFeel is in RTL mode
- isRTL() - Method in class com.sun.lwuit.spinner.Spinner
-
- isRTLLocale() - Method in class com.codename1.l10n.L10NManager
-
Indicates whether the language is a right to left language
- isSameBackDestination(Container, Container) - Method in class com.codename1.ui.util.UIBuilder
-
When navigating from one form/container to another we sometimes might not want the
back command to return to the previous container/form but rather to the one before
source.
- isSameFile(Path, Path) - Static method in class java.nio.file.Files
-
Tests if two paths locate the same file.
- isSameFile(Path, Path) - Method in class java.nio.file.spi.FileSystemProvider
-
Tests if two paths locate the same file.
- isSameNode(Node) - Method in interface org.w3c.dom.Node
-
Returns whether this node is the same node as the given one.
- isSameRM(XAResource) - Method in interface javax.transaction.xa.XAResource
-
This method is called to determine if the resource manager
instance represented by the target object is the same as the
resouce manager instance represented by the parameter xares.
- isScaleEdges() - Method in class com.codename1.ui.layouts.BorderLayout
-
Stretches the edge components (NORTH/EAST/WEST/SOUTH)
- isSchemaLanguageSupported(String) - Method in class javax.xml.validation.SchemaFactory
-
Is specified schema supported by this SchemaFactory
?
- isScreenSaverDisableSupported() - Method in class com.codename1.ui.Display
-
Checks if the device supports disabling the screen display from dimming, allowing
the developer to keep the screen display on.
- isScrollable() - Method in class com.codename1.ui.Component
-
Indicates whether the component should/could scroll by default a component
is not scrollable.
- isScrollable() - Method in class com.codename1.ui.Form
-
- isScrollable() - Method in class com.sun.lwuit.Component
-
Indicates whether the component should/could scroll by default a component
is not scrollable.
- isScrollableX() - Method in class com.codename1.ui.Component
-
Indicates whether the component should/could scroll on the X axis
- isScrollableX() - Method in class com.codename1.ui.Container
-
- isScrollableX() - Method in class com.codename1.ui.List
-
- isScrollableX() - Method in class com.sun.lwuit.Component
-
Indicates whether the component should/could scroll on the X axis
- isScrollableX() - Method in class com.sun.lwuit.Container
-
- isScrollableX() - Method in class com.sun.lwuit.List
-
- isScrollableY() - Method in class com.codename1.ui.Component
-
Indicates whether the component should/could scroll on the Y axis
- isScrollableY() - Method in class com.codename1.ui.Container
-
- isScrollableY() - Method in class com.codename1.ui.List
-
- isScrollableY() - Method in class com.codename1.ui.TextArea
-
- isScrollableY() - Method in class com.sun.lwuit.Component
-
Indicates whether the component should/could scroll on the Y axis
- isScrollableY() - Method in class com.sun.lwuit.Container
-
- isScrollableY() - Method in class com.sun.lwuit.List
-
- isScrollableY() - Method in class com.sun.lwuit.TextArea
-
- isScrollVisible() - Method in class com.codename1.ui.Component
-
Indicate whether this component scroll is visible
- isScrollVisible() - Method in class com.sun.lwuit.Component
-
Indicate whether this component scroll is visible
- isSealed() - Method in class java.lang.Package
-
Returns true if this package is sealed.
- isSealed(URL) - Method in class java.lang.Package
-
Returns true if this package is sealed with respect to the specified
code source url.
- isSearchable(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether the designated column can be used in a where clause.
- isSecure() - Method in class com.codename1.io.Cookie
-
- isSelectableInteraction() - Method in class com.codename1.ui.Button
-
- isSelectableInteraction() - Method in class com.codename1.ui.Component
-
This method allows a component to indicate that it is interested in an "implicit" select
command to appear in the "fire" button when 3 softbuttons are defined in a device.
- isSelectableInteraction() - Method in class com.codename1.ui.Container
-
- isSelectableInteraction() - Method in class com.codename1.ui.List
-
- isSelectableInteraction() - Method in class com.codename1.ui.Slider
-
- isSelectableInteraction() - Method in class com.codename1.ui.TextArea
-
- isSelectableInteraction() - Method in class com.codename1.ui.TextField
-
- isSelectableInteraction() - Method in class com.sun.lwuit.Button
-
- isSelectableInteraction() - Method in class com.sun.lwuit.Component
-
This method allows a component to indicate that it is interested in an "implicit" select
command to appear in the "fire" button when 3 softbuttons are defined in a device.
- isSelectableInteraction() - Method in class com.sun.lwuit.List
-
- isSelectableInteraction() - Method in class com.sun.lwuit.TextArea
-
- isSelectableInteraction() - Method in class com.sun.lwuit.TextField
-
- isSelected() - Method in class com.codename1.components.MultiButton
-
Returns true if the checkbox/radio button is selected
- isSelected() - Method in class com.codename1.ui.Button
-
Returns true if the button is selected for toggle buttons,
- isSelected() - Method in class com.codename1.ui.ButtonGroup
-
Returns whether a radio button in the group is selected.
- isSelected() - Method in class com.codename1.ui.CheckBox
-
Return true if the checkbox is selected
- isSelected() - Method in class com.codename1.ui.RadioButton
-
Returns true if the radio button is selected
- isSelected() - Method in class com.sun.lwuit.Button
-
Returns true if the button is selected for toggle buttons,
throws an exception if this is not a toggle button
- isSelected() - Method in class com.sun.lwuit.ButtonGroup
-
Returns whether a radio button in the group is selected.
- isSelected() - Method in class com.sun.lwuit.CheckBox
-
Return true if the checkbox is selected
- isSelected() - Method in class com.sun.lwuit.RadioButton
-
Returns true if the radio button is selected
- isSelected() - Method in class java.awt.im.InputMethodHighlight
-
Returns whether the text range is selected.
- isSelectionListener() - Method in class com.codename1.ui.list.GenericListCellRenderer
-
- isSensor() - Method in class com.codename1.maps.providers.GoogleMapsProvider
-
Specifies whether the application requesting the static map is using a sensor to determine the user's location.
- isServerSocketSupported() - Method in class com.codename1.io.Socket
-
Returns true if server sockets are supported in this port, if this method returns
false invocations of listen will always fail
- isSet - Variable in class java.util.Calendar
-
The flags which tell if a specified calendar field for the calendar is set.
- isSet(int) - Method in class java.util.Calendar
-
Determines if the given calendar field has a value set,
including cases that the value has been set by internal fields
calculations triggered by a get
method call.
- isSet(DatatypeConstants.Field) - Method in class javax.xml.datatype.Duration
-
Checks if a field is set.
- isShared() - Method in class java.nio.channels.FileLock
-
Tells whether this lock is shared.
- isShiftDown() - Method in class java.awt.event.InputEvent
-
Returns whether or not the Shift modifier is down on this event.
- isShorterThan(Duration) - Method in class javax.xml.datatype.Duration
-
Checks if this duration object is strictly shorter than
another Duration
object.
- isShouldLocalize() - Method in class com.codename1.ui.Label
-
Indicates if text should be localized when set to the label, by default
all text is localized so this allows disabling automatic localization for
a specific label.
- isShowing() - Static method in class com.codename1.ui.SideMenuBar
-
Returns true if a side menu is currently controlling the screen
- isShowing() - Method in class java.awt.Component
-
Determines whether this component is showing on screen.
- isShowMeridiem() - Method in class com.codename1.ui.spinner.Picker
-
Indicates whether hours should be rendered as AM/PM or 24hr format
- isShowMeridiem() - Method in class com.codename1.ui.spinner.TimeSpinner
-
- isShowNumbers() - Method in class com.codename1.ui.list.DefaultListCellRenderer
-
Indicate whether numbering should exist for the default cell renderer
- isShowNumbers() - Method in class com.sun.lwuit.list.DefaultListCellRenderer
-
Indicate whether numbering should exist for the default cell renderer
- isShowNumbersDefault() - Static method in class com.codename1.ui.list.DefaultListCellRenderer
-
Inidicates whether the default list cell renderer will show numbers by default
when constructed
- isShowNumbersDefault() - Static method in class com.sun.lwuit.list.DefaultListCellRenderer
-
Inidicates whether the default list cell renderer will show numbers by default
when constructed
- isShowTooltips() - Static method in class com.codename1.ui.VirtualKeyboard
-
Indicates whether tooltips should be shown when the keys in the VKB are pressed
- isShutdown() - Method in class java.nio.channels.AsynchronousChannelGroup
-
Tells whether or not this asynchronous channel group is shutdown.
- isShutdown() - Method in interface java.util.concurrent.ExecutorService
-
Returns true
if this executor has been shut down.
- isShutdown() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true
if this pool has been shut down.
- isShutdown() - Method in class java.util.concurrent.ThreadPoolExecutor
-
- isSigned(int) - Method in interface java.sql.ParameterMetaData
-
Retrieves whether values for the designated parameter can be signed numbers.
- isSigned(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether values in the designated column are signed numbers.
- isSingleFocusMode() - Method in class com.codename1.ui.Form
-
Returns true if there is only one focusable member in this form.
- isSingleFocusMode() - Method in class com.sun.lwuit.Form
-
Returns true if there is only one focusable member in this form.
- isSingleLineTextArea() - Method in class com.codename1.ui.TextArea
-
Indicates whether this is a single line text area, in which case "growing" won't
work as expected.
- isSingleLineTextArea() - Method in class com.sun.lwuit.TextArea
-
Indicates whether this is a single line text area, in which case "growing" won't
work as expected.
- isSiteLocalAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is a site local address.
- isSiteLocalAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is a site local address.
- isSiteLocalAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is a site local address.
- isSlowMotion() - Static method in class com.codename1.ui.animations.Motion
-
Allows debugging motion behavior by slowing motions down 50 fold, doesn't apply to friction motion
- isSmoothScrolling() - Method in class com.codename1.ui.Component
-
Indicates that scrolling through the component should work as an animation
- isSmoothScrolling() - Method in class com.codename1.ui.Form
-
- isSmoothScrolling() - Method in class com.sun.lwuit.Component
-
Indicates that scrolling through the component should work as an animation
- isSmoothScrolling() - Method in class com.sun.lwuit.Form
-
- isSnapToGrid() - Method in class com.codename1.ui.Component
-
Indicates whether scrolling this component should jump to a specific location
in a grid
- isSpace(char) - Static method in class java.lang.Character
-
- isSpaceChar(char) - Static method in class java.lang.Character
-
Determines if the specified character is a Unicode space character.
- isSpaceChar(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a
Unicode space character.
- isSpecified() - Method in interface javax.xml.stream.events.Attribute
-
A flag indicating whether this attribute was actually
specified in the start-tag of its element, or was defaulted from the schema.
- isSpecified(int) - Method in class javax.xml.validation.TypeInfoProvider
-
Returns false
if the attribute was added by the validator.
- isSpecified(int) - Method in interface org.xml.sax.ext.Attributes2
-
Returns true unless the attribute value was provided
by DTD defaulting.
- isSpecified(String, String) - Method in interface org.xml.sax.ext.Attributes2
-
Returns true unless the attribute value was provided
by DTD defaulting.
- isSpecified(String) - Method in interface org.xml.sax.ext.Attributes2
-
Returns true unless the attribute value was provided
by DTD defaulting.
- isSpecified(int) - Method in class org.xml.sax.ext.Attributes2Impl
-
Returns the current value of an attribute's "specified" flag.
- isSpecified(String, String) - Method in class org.xml.sax.ext.Attributes2Impl
-
Returns the current value of an attribute's "specified" flag.
- isSpecified(String) - Method in class org.xml.sax.ext.Attributes2Impl
-
Returns the current value of an attribute's "specified" flag.
- isStandalone() - Method in enum java.time.format.TextStyle
-
Returns true if the Style is a stand-alone style.
- isStandalone() - Method in interface javax.xml.stream.events.StartDocument
-
Returns if this XML is standalone
- isStandalone() - Method in class javax.xml.stream.util.StreamReaderDelegate
-
- isStandalone() - Method in interface javax.xml.stream.XMLStreamReader
-
Get the standalone declaration from the xml declaration
- isStartDocument() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is a StartDocument.
- isStartElement() - Method in interface javax.xml.stream.events.XMLEvent
-
A utility function to check if this event is a StartElement.
- isStartElement() - Method in class javax.xml.stream.util.StreamReaderDelegate
-
- isStartElement() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns true if the cursor points to a start tag (otherwise false)
- isStartsWithMode() - Method in class com.codename1.ui.AutoCompleteTextField
-
When enabled this makes the filter check that the string starts with rather than within the index
- isStartsWithMode() - Method in class com.codename1.ui.list.FilterProxyListModel
-
When enabled this makes the filter check that the string starts with rather than within the index
- isStatic(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
static
modifier, false
otherwise.
- isStickyDrag() - Method in class com.codename1.components.OnOffSwitch
-
- isStickyDrag() - Method in class com.codename1.ui.Component
-
Returns true if the component is interested in receiving drag/pointer release events even
after the gesture exceeded its boundaries.
- isStickyDrag() - Method in class com.codename1.ui.Slider
-
- isStrict(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
strictfp
modifier, false
otherwise.
- isStrikeThru() - Method in class com.codename1.ui.plaf.Style
-
Returns true if the strike through text decoration is on, false otherwise
- isSubscriptionSupported() - Method in class com.codename1.payment.Purchase
-
Returns true if the subscription API is supported in this platform
- isSupplementaryCodePoint(int) - Static method in class java.lang.Character
-
- isSupported() - Method in class com.codename1.io.Socket
-
Returns true if sockets are supported in this port, false otherwise
- isSupported() - Method in interface com.codename1.system.NativeInterface
-
Indicates whether this native interface is supported on the current platform
- isSupported(Element) - Method in class com.codename1.ui.html.HTMLParser
-
Overrides the Element.isSupported to let the parser know which tags are supported in XHTML-MP 1.0
- isSupported(Element) - Method in class com.codename1.xml.XMLParser
-
Returns true if this element is supported, false otherwise
In XMLParser this always returns true, but subclasses can determine if an element is supported in their context according to its name etc.
- isSupported(String) - Static method in class java.nio.charset.Charset
-
Tells whether the named charset is supported.
- isSupported(TemporalField) - Method in interface java.time.chrono.ChronoLocalDate
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in interface java.time.chrono.ChronoLocalDate
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in interface java.time.chrono.ChronoLocalDateTime
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in interface java.time.chrono.ChronoLocalDateTime
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in interface java.time.chrono.ChronoZonedDateTime
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in interface java.time.chrono.ChronoZonedDateTime
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in interface java.time.chrono.Era
-
Checks if the specified field is supported.
- isSupported(TemporalField) - Method in class java.time.chrono.JapaneseDate
-
Checks if the specified field is supported.
- isSupported(TemporalField) - Method in enum java.time.DayOfWeek
-
Checks if the specified field is supported.
- isSupported(TemporalField) - Method in class java.time.Instant
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.Instant
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in class java.time.LocalDate
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.LocalDate
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in class java.time.LocalDateTime
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.LocalDateTime
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in class java.time.LocalTime
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.LocalTime
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in enum java.time.Month
-
Checks if the specified field is supported.
- isSupported(TemporalField) - Method in class java.time.MonthDay
-
Checks if the specified field is supported.
- isSupported(TemporalField) - Method in class java.time.OffsetDateTime
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.OffsetDateTime
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in class java.time.OffsetTime
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.OffsetTime
-
Checks if the specified unit is supported.
- isSupported(TemporalUnit) - Method in interface java.time.temporal.Temporal
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in interface java.time.temporal.TemporalAccessor
-
Checks if the specified field is supported.
- isSupported(TemporalField) - Method in class java.time.Year
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.Year
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in class java.time.YearMonth
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.YearMonth
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in class java.time.ZonedDateTime
-
Checks if the specified field is supported.
- isSupported(TemporalUnit) - Method in class java.time.ZonedDateTime
-
Checks if the specified unit is supported.
- isSupported(TemporalField) - Method in class java.time.ZoneOffset
-
Checks if the specified field is supported.
- isSupported(String, String) - Method in interface org.w3c.dom.Node
-
Tests whether the DOM implementation implements a specific feature and
that feature is supported by this node, as specified in .
- isSupportedBy(TemporalAccessor) - Method in enum java.time.temporal.ChronoField
-
- isSupportedBy(Temporal) - Method in enum java.time.temporal.ChronoUnit
-
- isSupportedBy(TemporalAccessor) - Method in interface java.time.temporal.TemporalField
-
Checks if this field is supported by the temporal object.
- isSupportedBy(Temporal) - Method in interface java.time.temporal.TemporalUnit
-
Checks if this unit is supported by the specified temporal object.
- isSupportedLocale(Locale) - Method in class java.util.spi.LocaleServiceProvider
-
Returns true
if the given locale
is supported by
this locale service provider.
- isSupressExceptions() - Method in class com.codename1.ui.html.HTMLComponent
-
Deprecated.
- isSurrogate(char) - Static method in class java.lang.Character
-
Determines if the given char
value is a Unicode
surrogate code unit.
- isSurrogatePair(char, char) - Static method in class java.lang.Character
-
- isSVG() - Method in class com.codename1.ui.Image
-
Indicates if this image represents an SVG file or a bitmap file
- isSVG() - Method in class com.codename1.ui.ScaledImage
-
- isSVG() - Method in class com.sun.lwuit.Image
-
Indicates if this image represents an SVG file or a bitmap file
- isSVG() - Method in class com.sun.lwuit.ScaledImage
-
- isSVGSupported() - Static method in class com.codename1.ui.Image
-
Indicates whether the underlying platform supports creating an SVG Image
- isSVGSupported() - Static method in class com.sun.lwuit.Image
-
Indicates whether the underlying platform supports creating an SVG Image
- isSwipeActivated() - Method in class com.codename1.ui.Tabs
-
Returns true if the swipe between tabs is activated, this is relevant for
touch devices only
- isSymbolDialogKey(int) - Method in class com.codename1.ui.TextField
-
Returns true if this keycode is the one mapping to the symbol dialog popup
- isSymbolDialogKey(int) - Method in class com.sun.lwuit.TextField
-
Returns true if this keycode is the one mapping to the symbol dialog popup
- isSymbolicLink() - Method in interface java.nio.file.attribute.BasicFileAttributes
-
Tells whether the file is a symbolic link.
- isSymbolicLink(Path) - Static method in class java.nio.file.Files
-
Tests whether a file is a symbolic link.
- isSynchronized(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
synchronized
modifier, false
otherwise.
- isSynthetic() - Method in class java.lang.Class
-
check if this class instance represents a synthetic class
- isSynthetic() - Method in class java.lang.reflect.Constructor
-
Returns true
if this executable is a synthetic
construct; returns false
otherwise.
- isSynthetic() - Method in class java.lang.reflect.Executable
-
Returns true
if this executable is a synthetic
construct; returns false
otherwise.
- isSynthetic() - Method in class java.lang.reflect.Field
-
Returns true
if this field is a synthetic
field; returns false
otherwise.
- isSynthetic() - Method in interface java.lang.reflect.Member
-
Returns true
if this member was introduced by
the compiler; returns false
otherwise.
- isSynthetic() - Method in class java.lang.reflect.Method
-
Returns true
if this executable is a synthetic
construct; returns false
otherwise.
- isSynthetic() - Method in class java.lang.reflect.Parameter
-
Returns true
if this parameter is neither implicitly
nor explicitly declared in source code; returns false
otherwise.
- isSystem() - Method in interface java.nio.file.attribute.DosFileAttributes
-
Returns the value of the system attribute.
- isTablet() - Method in class com.codename1.ui.Display
-
Indicates whether the device is a tablet, notice that this is often a guess
- isTactileTouch(int, int) - Method in class com.codename1.ui.Component
-
Elaborate components might not provide tactile feedback for all their areas (e.g.
- isTactileTouch() - Method in class com.codename1.ui.Component
-
Indicates whether the component should "trigger" tactile touch when pressed by the user
in a touch screen UI.
- isTactileTouch(int, int) - Method in class com.codename1.ui.List
-
- isTactileTouch(int, int) - Method in class com.sun.lwuit.Component
-
Elaborate components might not provide tactile feedback for all their areas (e.g.
- isTactileTouch() - Method in class com.sun.lwuit.Component
-
Indicates whether the component should "trigger" tactile touch when pressed by the user
in a touch screen UI.
- isTactileTouch(int, int) - Method in class com.sun.lwuit.List
-
- isTemporary() - Method in class java.awt.event.FocusEvent
-
Identifies the focus change event as temporary or permanent.
- isTensileDragEnabled() - Method in class com.codename1.ui.Component
-
Indicates whether tensile drag (dragging beyond the boundry of the component and
snapping back) is enabled for this component.
- isTensileDragEnabled() - Method in class com.sun.lwuit.Component
-
Indicates whether tensile drag (dragging beyond the boundry of the component and
snapping back) is enabled for this component.
- isTerminated() - Method in class java.nio.channels.AsynchronousChannelGroup
-
Tells whether or not this group has terminated.
- isTerminated() - Method in interface java.util.concurrent.ExecutorService
-
Returns true
if all tasks have completed following shut down.
- isTerminated() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true
if all tasks have completed following shut down.
- isTerminated() - Method in class java.util.concurrent.Phaser
-
Returns true
if this phaser has been terminated.
- isTerminated() - Method in class java.util.concurrent.ThreadPoolExecutor
-
- isTerminating() - Method in class java.util.concurrent.ForkJoinPool
-
Returns true
if the process of termination has
commenced but not yet completed.
- isTerminating() - Method in class java.util.concurrent.ThreadPoolExecutor
-
- isTextElement() - Method in class com.codename1.xml.Element
-
Returns true if this is a text element, false otherwise
- isTheme(String) - Method in class com.codename1.ui.util.Resources
-
Returns true if this is a theme resource
- isTheme(String) - Method in class com.sun.lwuit.util.Resources
-
Returns true if this is a theme resource
- isThemeConstant(String, boolean) - Method in class com.codename1.ui.plaf.UIManager
-
Returns a theme constant defined in the resource editor as a boolean value
- isThemeConstant(String) - Method in class com.codename1.ui.plaf.UIManager
-
Returns a theme constant defined in the resource editor as a boolean value or null if the constant isn't defined
- isThirdSoftButton() - Method in class com.codename1.ui.Display
-
Indicates whether the 3rd softbutton should be supported on this device
- isThirdSoftButton() - Method in class com.sun.lwuit.Display
-
Indicates whether the 3rd softbutton should be supported on this device
- isTickerEnabled() - Method in class com.codename1.ui.Label
-
This method return true if the ticker is enabled on this Label
- isTickerEnabled() - Method in class com.sun.lwuit.Label
-
This method return true if the ticker is enabled on this Label
- isTickerRunning() - Method in class com.codename1.ui.Label
-
Returns true if the ticker is running
- isTickerRunning() - Method in class com.sun.lwuit.Label
-
Returns true if the ticker is running
- isTickWhenFocused() - Method in class com.codename1.ui.plaf.DefaultLookAndFeel
-
This method allows to set all Labels, Buttons, CheckBoxes, RadioButtons
to start ticking when the text is too long.
- isTimeBased() - Method in enum java.time.temporal.ChronoField
-
Checks if this field represents a component of a time.
- isTimeBased() - Method in enum java.time.temporal.ChronoUnit
-
Checks if this unit is a time unit.
- isTimeBased() - Method in interface java.time.temporal.TemporalField
-
Checks if this field represents a component of a time.
- isTimeBased() - Method in interface java.time.temporal.TemporalUnit
-
Checks if this unit represents a component of a time.
- isTimeSet - Variable in class java.util.Calendar
-
True if then the value of time
is valid.
- isTitleCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is a titlecase character.
- isTitleCase(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is a titlecase character.
- isToggle() - Method in class com.codename1.ui.Button
-
Toggle button mode is only relevant for checkboxes/radio buttons.
- isTouchMenus() - Method in class com.codename1.ui.plaf.LookAndFeel
-
- isTouchMenus() - Method in class com.sun.lwuit.plaf.LookAndFeel
-
Indicates whether the menu UI should target a touch based device or a
standard cell phone
- isTouchScreenDevice() - Method in class com.codename1.ui.Display
-
Indicates if this is a touch screen device that will return pen events,
defaults to true if the device has pen events but can be overriden by
the developer.
- isTouchScreenDevice() - Method in class com.sun.lwuit.Display
-
Indicates if this is a touch screen device that will return pen events,
defaults to true if the device has pen events but can be overriden by
the developer.
- isTrackVisitedURLs() - Method in class com.codename1.ui.html.DefaultDocumentRequestHandler
-
Allows tracking whether a URL was visited or not
- isTransient(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
transient
modifier, false
otherwise.
- isTrueTypeFileSupported() - Static method in class com.codename1.ui.Font
-
Returns true if the underlying platform supports loading truetype fonts from
a file.
- isTrueTypeFileSupported() - Static method in class com.sun.lwuit.Font
-
Returns true if the underlying platform supports loading truetype fonts from
a file stream.
- isUI(String) - Method in class com.codename1.ui.util.Resources
-
Returns true if this is a UI resource
- isUnderflow() - Method in class java.nio.charset.CoderResult
-
Tells whether or not this object describes an underflow condition.
- isUnderline() - Method in class com.codename1.ui.plaf.Style
-
Returns true if the underline text decoration is on, false otherwise
- isUnicodeIdentifierPart(char) - Static method in class java.lang.Character
-
Determines if the specified character may be part of a Unicode
identifier as other than the first character.
- isUnicodeIdentifierPart(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) may be part of a Unicode
identifier as other than the first character.
- isUnicodeIdentifierStart(char) - Static method in class java.lang.Character
-
Determines if the specified character is permissible as the
first character in a Unicode identifier.
- isUnicodeIdentifierStart(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is permissible as the
first character in a Unicode identifier.
- isUnique() - Static method in class java.rmi.dgc.VMID
-
Deprecated.
- isUnmappable() - Method in class java.nio.charset.CoderResult
-
Tells whether or not this object describes an unmappable-character
error.
- isUnresolved() - Method in class java.net.InetSocketAddress
-
Checks whether the address has been resolved or not.
- isUnshared() - Method in class java.io.ObjectStreamField
-
Returns boolean value indicating whether or not the serializable field
represented by this ObjectStreamField instance is unshared.
- isUnsubscribeSupported() - Method in class com.codename1.payment.Purchase
-
Some platforms support subscribing but don't support unsubscribe
- isUp() - Method in class java.net.NetworkInterface
-
Returns whether a network interface is up and running.
- isUpKey(int) - Method in class com.codename1.maps.MapComponent
-
Returns true if this is a up keycode
- isUpperCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is an uppercase character.
- isUpperCase(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is an uppercase character.
- isUseLongs() - Static method in class com.codename1.io.JSONParser
-
Indicates that the parser will generate long objects and not just doubles for numeric values
- isUseNativeTextInput() - Static method in class com.codename1.ui.TextField
-
Indicates that native text input should be used in text field when in place editing is supported by the platform
- isUseSoftkeys() - Method in class com.codename1.ui.TextField
-
When set to true softkeys are used to enable delete functionality
- isUseSoftkeys() - Method in class com.sun.lwuit.TextField
-
When set to true softkeys are used to enable delete functionality
- isUseStringWidth() - Static method in class com.codename1.ui.TextArea
-
By default text area uses charWidth since its much faster on some devices
than string width.
- isUseStringWidth() - Static method in class com.sun.lwuit.TextArea
-
By default text area uses charWidth since its much faster on some devices
than string width.
- isValid() - Method in class java.awt.Component
-
Determines whether this component is valid.
- isValid() - Method in class java.nio.channels.FileLock
-
Tells whether or not this lock is valid.
- isValid() - Method in class java.nio.channels.MembershipKey
-
Tells whether or not this membership is valid.
- isValid() - Method in class java.nio.channels.SelectionKey
-
Tells whether or not this key is valid.
- isValid() - Method in class java.nio.channels.spi.AbstractSelectionKey
-
- isValid() - Method in interface java.nio.file.WatchKey
-
Tells whether or not this watch key is valid.
- isValid(int) - Method in interface java.sql.Connection
-
Returns true if the connection has not been closed and is still valid.
- isValid() - Method in interface javax.net.ssl.SSLSession
-
Returns whether this session is valid and available for resuming or
joining.
- isValid() - Method in class javax.xml.datatype.XMLGregorianCalendar
-
Validate instance by getXMLSchemaType()
constraints.
- isValidating() - Method in class javax.xml.parsers.DocumentBuilder
-
Indicates whether or not this parser is configured to
validate XML documents.
- isValidating() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which validate the XML content during parse.
- isValidating() - Method in class javax.xml.parsers.SAXParser
-
Indicates whether or not this parser is configured to
validate XML documents.
- isValidating() - Method in class javax.xml.parsers.SAXParserFactory
-
Indicates whether or not the factory is configured to produce
parsers which validate the XML content during parse.
- isValidCodePoint(int) - Static method in class java.lang.Character
-
- isValidDay(int) - Method in class java.time.YearMonth
-
Checks if the day-of-month is valid for this year-month.
- isValidIntValue(long) - Method in class java.time.temporal.ValueRange
-
Checks if the value is within the valid range and that all values
in the range fit in an int
.
- isValidMonthDay(MonthDay) - Method in class java.time.Year
-
Checks if the month-day is valid for this year.
- isValidOffset(ZoneOffset) - Method in class java.time.zone.ZoneOffsetTransition
-
Checks if the specified offset is valid during this transition.
- isValidOffset(LocalDateTime, ZoneOffset) - Method in class java.time.zone.ZoneRules
-
Checks if the offset date-time is valid for these rules.
- isValidValue(long) - Method in class java.time.temporal.ValueRange
-
Checks if the value is within the valid range.
- isValidYear(int) - Method in class java.time.MonthDay
-
Checks if the year is valid for this month-day.
- isValignByRow() - Method in class com.codename1.ui.layouts.FlowLayout
-
Returns whether vertical alignment is done internally or externally
- isValue() - Method in class com.codename1.components.OnOffSwitch
-
The value of the switch
- isVarArgs() - Method in interface java.lang.invoke.MethodHandleInfo
-
Determines if the underlying member was a variable arity method or constructor.
- isVarArgs() - Method in class java.lang.reflect.Constructor
-
Returns true
if this executable was declared to take a
variable number of arguments; returns false
otherwise.
- isVarArgs() - Method in class java.lang.reflect.Executable
-
Returns true
if this executable was declared to take a
variable number of arguments; returns false
otherwise.
- isVarArgs() - Method in class java.lang.reflect.Method
-
Returns true
if this executable was declared to take a
variable number of arguments; returns false
otherwise.
- isVarArgs() - Method in class java.lang.reflect.Parameter
-
Returns true
if this parameter represents a variable
argument list; returns false
otherwise.
- isVarargsCollector() - Method in class java.lang.invoke.MethodHandle
-
- isVertical() - Method in class com.codename1.ui.Slider
-
Indicates the slider is vertical
- isVerticalCover() - Method in class com.codename1.ui.animations.CommonTransitions
-
Returns true if this is a vertical cover transition
- isVerticalSlide() - Method in class com.codename1.ui.animations.CommonTransitions
-
Returns true if this is a vertical slide transition
- isVideo() - Method in interface com.codename1.media.Media
-
This method returns true if this is a Video Media
- isVirtual() - Method in class java.net.NetworkInterface
-
Returns whether this interface is a virtual interface (also called
subinterface).
- isVirtualKeyboardShowing() - Method in class com.codename1.ui.Display
-
Indicates if the virtual keyboard is currently showing or not
- isVirtualKeyboardShowing() - Method in class com.codename1.ui.VirtualKeyboard
-
- isVirtualKeyboardShowing() - Method in class com.sun.lwuit.Display
-
Indicates if the virtual keyboard is currently showing or not
- isVirtualKeyboardShowingSupported() - Method in class com.sun.lwuit.Display
-
Indicates whether showing a virtual keyboard programmatically is supported
- isVisible() - Method in class com.codename1.ui.Component
-
Returns whether the component is visible or not
- isVisible() - Method in class com.sun.lwuit.Component
-
Returns whether the component is visible or not
- isVisible() - Method in class java.awt.Component
-
Determines whether this component should be visible when its
parent is visible.
- isVolatile(int) - Static method in class java.lang.reflect.Modifier
-
Return true
if the integer argument includes the
volatile
modifier, false
otherwise.
- isWeak(byte[], int) - Static method in class javax.crypto.spec.DESKeySpec
-
Checks if the given DES key material is weak or semi-weak.
- isWeekDateSupported() - Method in class java.util.Calendar
-
Returns whether this Calendar
supports week dates.
- isWeekDateSupported() - Method in class java.util.GregorianCalendar
-
Returns true
indicating this GregorianCalendar
supports week dates.
- isWhiteSpace(char) - Method in class com.codename1.xml.XMLParser
-
Checks if the specified character is a white space or not.
- isWhitespace(char) - Static method in class java.lang.Character
-
Determines if the specified character is white space according to Java.
- isWhitespace(int) - Static method in class java.lang.Character
-
Determines if the specified character (Unicode code point) is
white space according to Java.
- isWhiteSpace() - Method in interface javax.xml.stream.events.Characters
-
Returns true if this set of Characters
is all whitespace.
- isWhiteSpace() - Method in class javax.xml.stream.util.StreamReaderDelegate
-
- isWhiteSpace() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns true if the cursor points to a character data event
that consists of all whitespace
- isWrapperFor(Class<?>) - Method in interface java.sql.Wrapper
-
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
- isWrapperInstance(Object) - Static method in class java.lang.invoke.MethodHandleProxies
-
- isWritable() - Method in class java.nio.channels.SelectionKey
-
Tests whether this key's channel is ready for writing.
- isWritable(Path) - Static method in class java.nio.file.Files
-
Tests whether a file is writable.
- isWritable(int) - Method in interface java.sql.ResultSetMetaData
-
Indicates whether it is possible for a write on the designated column to succeed.
- isWriteLocked() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries if the write lock is held by any thread.
- isWriteLocked() - Method in class java.util.concurrent.locks.StampedLock
-
Returns true
if the lock is currently held exclusively.
- isWriteLockedByCurrentThread() - Method in class java.util.concurrent.locks.ReentrantReadWriteLock
-
Queries if the write lock is held by the current thread.
- isWriteRequest() - Method in class com.codename1.io.ConnectionRequest
-
- isXIncludeAware() - Method in class javax.xml.parsers.DocumentBuilder
-
Get the XInclude processing mode for this parser.
- isXIncludeAware() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Get state of XInclude processing.
- isXIncludeAware() - Method in class javax.xml.parsers.SAXParser
-
Get the XInclude processing mode for this parser.
- isXIncludeAware() - Method in class javax.xml.parsers.SAXParserFactory
-
Get state of XInclude processing.
- isZero() - Method in interface java.time.chrono.ChronoPeriod
-
Checks if all the supported units of this period are zero.
- isZero() - Method in class java.time.Duration
-
Checks if this duration is zero length.
- isZero() - Method in class java.time.Period
-
Checks if all three units of this period are zero.
- isZoomInKey(int) - Method in class com.codename1.maps.MapComponent
-
Returns true if this is a zoom in keycode
- isZoomOutKey(int) - Method in class com.codename1.maps.MapComponent
-
Returns true if this is a zoom out keycode
- isZoomToLayersKey(int) - Method in class com.codename1.maps.MapComponent
-
Returns true if this is a zoom to layers keycode
- ITALIAN - Static variable in class java.util.Locale
-
Useful constant for language.
- ITALY - Static variable in class java.util.Locale
-
Useful constant for country.
- item(int) - Method in interface org.w3c.dom.DOMImplementationList
-
Returns the index
th item in the collection.
- item(int) - Method in interface org.w3c.dom.DOMStringList
-
Returns the index
th item in the collection.
- item(int) - Method in interface org.w3c.dom.NamedNodeMap
-
Returns the index
th item in the map.
- item(int) - Method in interface org.w3c.dom.NodeList
-
Returns the index
th item in the collection.
- ITEM_FIRST - Static variable in class java.awt.event.ItemEvent
-
The first number in the range of ids used for item events.
- ITEM_LAST - Static variable in class java.awt.event.ItemEvent
-
The last number in the range of ids used for item events.
- ITEM_STATE_CHANGED - Static variable in class java.awt.event.ItemEvent
-
This event id indicates that an item's state changed.
- ItemEvent - Class in java.awt.event
-
A semantic event which indicates that an item was selected or deselected.
- ItemEvent(ItemSelectable, int, Object, int) - Constructor for class java.awt.event.ItemEvent
-
Constructs an ItemEvent
object.
- ItemListener - Interface in java.awt.event
-
The listener interface for receiving item events.
- itemPurchased(String) - Method in interface com.codename1.payment.PurchaseCallback
-
Indicates a the given SKU was purchased by a user.
- itemPurchaseError(String, String) - Method in interface com.codename1.payment.PurchaseCallback
-
Callback indicating a the given SKU purchase failed
- itemRefunded(String) - Method in interface com.codename1.payment.PurchaseCallback
-
Invoked if a refund was granted for a purchase
- itemStateChanged(ItemEvent) - Method in interface java.awt.event.ItemListener
-
Invoked when an item has been selected or deselected by the user.
- Iterable<T> - Interface in java.lang
-
Implementing this interface allows an object to be the target of
the "for-each loop" statement.
- iterate(double, DoubleUnaryOperator) - Static method in interface java.util.stream.DoubleStream
-
Returns an infinite sequential ordered DoubleStream
produced by iterative
application of a function f
to an initial element seed
,
producing a Stream
consisting of seed
, f(seed)
,
f(f(seed))
, etc.
- iterate(int, IntUnaryOperator) - Static method in interface java.util.stream.IntStream
-
Returns an infinite sequential ordered IntStream
produced by iterative
application of a function f
to an initial element seed
,
producing a Stream
consisting of seed
, f(seed)
,
f(f(seed))
, etc.
- iterate(long, LongUnaryOperator) - Static method in interface java.util.stream.LongStream
-
Returns an infinite sequential ordered LongStream
produced by iterative
application of a function f
to an initial element seed
,
producing a Stream
consisting of seed
, f(seed)
,
f(f(seed))
, etc.
- iterate(T, UnaryOperator<T>) - Static method in interface java.util.stream.Stream
-
Returns an infinite sequential ordered Stream
produced by iterative
application of a function f
to an initial element seed
,
producing a Stream
consisting of seed
, f(seed)
,
f(f(seed))
, etc.
- iterator() - Method in interface java.lang.Iterable
-
Returns an iterator over elements of type T
.
- iterator() - Method in interface java.nio.file.DirectoryStream
-
Returns the iterator associated with this DirectoryStream
.
- iterator() - Method in interface java.nio.file.Path
-
Returns an iterator over the name elements of this path.
- iterator() - Method in exception java.sql.SQLException
-
Returns an iterator over the chained SQLExceptions.
- iterator() - Method in class java.util.AbstractCollection
-
Returns an iterator over the elements contained in this collection.
- iterator() - Method in class java.util.AbstractList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in class java.util.AbstractSequentialList
-
Returns an iterator over the elements in this list (in proper
sequence).
- iterator() - Method in class java.util.ArrayDeque
-
Returns an iterator over the elements in this deque.
- iterator() - Method in class java.util.ArrayList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in interface java.util.Collection
-
Returns an iterator over the elements in this collection.
- iterator() - Method in class java.util.concurrent.ArrayBlockingQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in interface java.util.concurrent.BlockingDeque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.concurrent.ConcurrentHashMap.KeySetView
-
- iterator() - Method in class java.util.concurrent.ConcurrentLinkedDeque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.concurrent.ConcurrentLinkedQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in class java.util.concurrent.ConcurrentSkipListSet
-
Returns an iterator over the elements in this set in ascending order.
- iterator() - Method in class java.util.concurrent.CopyOnWriteArrayList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in class java.util.concurrent.CopyOnWriteArraySet
-
Returns an iterator over the elements contained in this set
in the order in which these elements were added.
- iterator() - Method in class java.util.concurrent.DelayQueue
-
Returns an iterator over all the elements (both expired and
unexpired) in this queue.
- iterator() - Method in class java.util.concurrent.LinkedBlockingDeque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.concurrent.LinkedBlockingQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in class java.util.concurrent.LinkedTransferQueue
-
Returns an iterator over the elements in this queue in proper sequence.
- iterator() - Method in class java.util.concurrent.PriorityBlockingQueue
-
Returns an iterator over the elements in this queue.
- iterator() - Method in class java.util.concurrent.SynchronousQueue
-
Returns an empty iterator in which hasNext
always returns
false
.
- iterator() - Method in interface java.util.Deque
-
Returns an iterator over the elements in this deque in proper sequence.
- iterator() - Method in class java.util.HashSet
-
Returns an iterator over the elements in this set.
- Iterator<E> - Interface in java.util
-
An iterator over a collection.
- iterator() - Method in interface java.util.List
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in interface java.util.NavigableSet
-
Returns an iterator over the elements in this set, in ascending order.
- iterator() - Method in class java.util.PriorityQueue
-
Returns an iterator over the elements in this queue.
- iterator() - Method in class java.util.ServiceLoader
-
Lazily loads the available providers of this loader's service.
- iterator() - Method in interface java.util.Set
-
Returns an iterator over the elements in this set.
- iterator(Spliterator<? extends T>) - Static method in class java.util.Spliterators
-
Creates an Iterator
from a Spliterator
.
- iterator(Spliterator.OfInt) - Static method in class java.util.Spliterators
-
Creates an PrimitiveIterator.OfInt
from a
Spliterator.OfInt
.
- iterator(Spliterator.OfLong) - Static method in class java.util.Spliterators
-
Creates an PrimitiveIterator.OfLong
from a
Spliterator.OfLong
.
- iterator(Spliterator.OfDouble) - Static method in class java.util.Spliterators
-
Creates an PrimitiveIterator.OfDouble
from a
Spliterator.OfDouble
.
- iterator() - Method in interface java.util.stream.BaseStream
-
Returns an iterator for the elements of this stream.
- iterator() - Method in interface java.util.stream.DoubleStream
-
- iterator() - Method in interface java.util.stream.IntStream
-
- iterator() - Method in interface java.util.stream.LongStream
-
- iterator() - Method in class java.util.TreeSet
-
Returns an iterator over the elements in this set in ascending order.
- iterator() - Method in class java.util.Vector
-
Returns an iterator over the elements in this list in proper sequence.
- IvParameterSpec - Class in javax.crypto.spec
-
This class specifies an initialization vector (IV).
- IvParameterSpec(byte[]) - Constructor for class javax.crypto.spec.IvParameterSpec
-
Creates an IvParameterSpec object using the bytes in iv
as the IV.
- IvParameterSpec(byte[], int, int) - Constructor for class javax.crypto.spec.IvParameterSpec
-
Creates an IvParameterSpec object using the first len
bytes in iv
, beginning at offset
inclusive, as the IV.
- IxcPermission - Class in javax.microedition.xlet.ixc
-
- IxcPermission(String, String) - Constructor for class javax.microedition.xlet.ixc.IxcPermission
-
- IxcRegistry - Class in javax.microedition.xlet.ixc
-
- IxcRegistry() - Constructor for class javax.microedition.xlet.ixc.IxcRegistry
-