| Package | Description |
|---|---|
| java.applet |
Provides the classes necessary to create an applet and the classes an applet uses to communicate with its applet context.
|
| java.awt |
Contains all of the classes for creating user interfaces and for painting graphics and images.
|
| java.beans |
Contains classes related to developing
beans -- components based on the JavaBeans™ architecture.
|
| java.io |
Provides for system input and output through data streams, serialization and the file system.
|
| java.lang |
Provides classes that are fundamental to the design of the Java programming language.
|
| java.lang.invoke |
The
java.lang.invoke package contains dynamic language support provided directly by the Java core class libraries and virtual machine.
|
| java.lang.reflect |
Provides classes and interfaces for obtaining reflective information about classes and objects.
|
| java.math |
Provides classes for performing arbitrary-precision integer arithmetic (
BigInteger) and arbitrary-precision decimal arithmetic (
BigDecimal).
|
| java.net |
Provides the classes for implementing networking applications.
|
| java.nio |
Defines buffers, which are containers for data, and provides an overview of the other NIO packages.
|
| java.nio.channels |
Defines channels, which represent connections to entities that are capable of performing I/O operations, such as files and sockets; defines selectors, for multiplexed, non-blocking I/O operations.
|
| java.nio.file |
Defines interfaces and classes for the Java virtual machine to access files, file attributes, and file systems.
|
| java.nio.file.attribute |
Interfaces and classes providing access to file and file system attributes.
|
| java.security |
Provides the classes and interfaces for the security framework.
|
| java.security.cert |
Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths.
|
| java.sql |
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java
TM programming language.
|
| java.text |
Provides classes and interfaces for handling text, dates, numbers, and messages in a manner independent of natural languages.
|
| java.time |
The main API for dates, times, instants, and durations.
|
| java.time.chrono |
Generic API for calendar systems other than the default ISO.
|
| java.time.format |
Provides classes to print and parse dates and times.
|
| java.time.temporal |
Access to date and time using fields and units, and date time adjusters.
|
| java.time.zone |
Support for time-zones and their rules.
|
| java.util |
Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).
|
| java.util.concurrent |
Utility classes commonly useful in concurrent programming.
|
| java.util.jar |
Provides classes for reading and writing the JAR (Java ARchive) file format, which is based on the standard ZIP file format with an optional manifest file.
|
| java.util.logging |
Provides the classes and interfaces of the Java
TM 2 platform's core logging facilities.
|
| java.util.stream |
Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.
|
| javax.lang.model.element |
Interfaces used to model elements of the Java programming language.
|
| javax.lang.model.util |
Utilities to assist in the processing of program elements and types.
|
| javax.management |
Provides the core classes for the Java Management Extensions.
|
| javax.management.modelmbean |
Provides the definition of the ModelMBean classes.
|
| javax.management.monitor |
Provides the definition of the monitor classes.
|
| javax.management.openmbean |
Provides the open data types and Open MBean descriptor classes.
|
| javax.management.relation |
Provides the definition of the Relation Service.
|
| javax.management.remote |
Interfaces for remote access to JMX MBean servers.
|
| javax.management.remote.rmi |
The RMI connector is a connector for the JMX Remote API that uses RMI to transmit client requests to a remote MBean server.
|
| javax.net.ssl |
Provides classes for the secure socket package.
|
| javax.swing |
Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
|
| javax.swing.border |
Provides classes and interface for drawing specialized borders around a Swing component.
|
| javax.swing.plaf.basic |
Provides user interface objects built according to the Basic look and feel.
|
| javax.swing.plaf.nimbus |
Provides user interface objects built according to the cross-platform Nimbus look and feel.
|
| javax.swing.plaf.synth |
Synth is a skinnable look and feel in which all painting is delegated.
|
| javax.swing.text |
Provides classes and interfaces that deal with editable and noneditable text components.
|
| javax.tools |
Provides interfaces for tools which can be invoked from a program, for example, compilers.
|
| javax.xml.bind |
Provides a runtime binding framework for client applications including unmarshalling, marshalling, and validation capabilities.
|
| javax.xml.parsers |
Provides classes allowing the processing of XML documents.
|
| javax.xml.stream | |
| javax.xml.transform |
This package defines the generic APIs for processing transformation instructions, and performing a transformation from source to result.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
Applet.isValidateRoot()
Indicates if this container is a validate root.
|
| Modifier and Type | Method and Description |
|---|---|
Color |
Window.getBackground()
Gets the background color of this window.
|
void |
Container.invalidate()
Invalidates the container.
|
boolean |
Window.isOpaque()
Indicates if the window is currently opaque.
|
boolean |
Window.isValidateRoot()
Indicates if this container is a validate root.
|
void |
Window.paint(Graphics
Paints the container.
|
void |
Window.setBackground(Color
Sets the background color of this window.
|
void |
Dialog.setBackground(Color
Sets the background color of this window.
|
void |
Frame.setBackground(Color
Sets the background color of this window.
|
void |
Window.setLocation(int x, int y)
Moves this component to a new location.
|
void |
Window.setLocation(Point
Moves this component to a new location.
|
void |
Dialog.setOpacity(float opacity)
Sets the opacity of the window.
|
void |
Frame.setOpacity(float opacity)
Sets the opacity of the window.
|
void |
Dialog.setShape(Shape
Sets the shape of the window.
|
void |
Frame.setShape(Shape
Sets the shape of the window.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Expression.execute()
The
execute method finds a method whose name is the same as the
methodName property, and invokes the method on the target.
|
| Modifier and Type | Method and Description |
|---|---|
IOException |
UncheckedIOException.getCause()
Returns the cause of this exception.
|
| Modifier and Type | Method and Description |
|---|---|
StringBuffer |
StringBuffer.append(boolean b)
|
StringBuilder |
StringBuilder.append(boolean b)
|
StringBuffer |
StringBuffer.append(char c)
|
StringBuilder |
StringBuilder.append(char c)
|
StringBuffer |
StringBuffer.append(char[] str)
|
StringBuilder |
StringBuilder.append(char[] str)
|
StringBuffer |
StringBuffer.append(char[] str, int offset, int len)
|
StringBuilder |
StringBuilder.append(char[] str, int offset, int len)
|
StringBuffer |
StringBuffer.append(CharSequence
Appends the specified
CharSequence to this sequence.
|
StringBuilder |
StringBuilder.append(CharSequence
|
StringBuffer |
StringBuffer.append(CharSequence
|
StringBuilder |
StringBuilder.append(CharSequence
|
StringBuffer |
StringBuffer.append(double d)
|
StringBuilder |
StringBuilder.append(double d)
|
StringBuffer |
StringBuffer.append(float f)
|
StringBuilder |
StringBuilder.append(float f)
|
StringBuffer |
StringBuffer.append(int i)
|
StringBuilder |
StringBuilder.append(int i)
|
StringBuffer |
StringBuffer.append(long lng)
|
StringBuilder |
StringBuilder.append(long lng)
|
StringBuffer |
StringBuffer.append(Object
|
StringBuilder |
StringBuilder.append(Object
|
StringBuffer |
StringBuffer.append(String
|
StringBuilder |
StringBuilder.append(String
|
StringBuffer |
StringBuffer.appendCodePoint(int codePoint)
|
StringBuilder |
StringBuilder.appendCodePoint(int codePoint)
|
int |
StringBuffer.capacity()
|
char |
StringBuffer.charAt(int index)
|
protected Object |
Thread.clone()
Throws CloneNotSupportedException as a Thread can not be meaningfully cloned.
|
int |
StringBuffer.codePointAt(int index)
|
int |
StringBuffer.codePointBefore(int index)
|
int |
StringBuffer.codePointCount(int beginIndex, int endIndex)
|
StringBuffer |
StringBuffer.delete(int start, int end)
|
StringBuilder |
StringBuilder.delete(int start, int end)
|
StringBuffer |
StringBuffer.deleteCharAt(int index)
|
StringBuilder |
StringBuilder.deleteCharAt(int index)
|
void |
StringBuffer.ensureCapacity(int minimumCapacity)
|
<A extends Annotation |
Class.getAnnotationsByType(Class
|
<A extends Annotation |
Package.getAnnotationsByType(Class
|
void |
StringBuffer.getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
|
<A extends Annotation |
Class.getDeclaredAnnotation(Class
|
<A extends Annotation |
Package.getDeclaredAnnotation(Class
|
<A extends Annotation |
Class.getDeclaredAnnotationsByType(Class
|
<A extends Annotation |
Package.getDeclaredAnnotationsByType(Class
|
int |
Double.hashCode()
Returns a hash code for this
Double object.
|
int |
Boolean.hashCode()
Returns a hash code for this
Boolean object.
|
int |
Integer.hashCode()
Returns a hash code for this
Integer.
|
int |
Byte.hashCode()
Returns a hash code for this
Byte; equal to the result of invoking
intValue().
|
int |
Long.hashCode()
Returns a hash code for this
Long.
|
int |
Float.hashCode()
Returns a hash code for this
Float object.
|
int |
Character.hashCode()
Returns a hash code for this
Character; equal to the result of invoking
charValue().
|
int |
Short.hashCode()
Returns a hash code for this
Short; equal to the result of invoking
intValue().
|
int |
StringBuffer.indexOf(String
|
int |
StringBuilder.indexOf(String
|
int |
StringBuffer.indexOf(String
|
int |
StringBuilder.indexOf(String
|
StringBuffer |
StringBuffer.insert(int offset, boolean b)
|
StringBuilder |
StringBuilder.insert(int offset, boolean b)
|
StringBuffer |
StringBuffer.insert(int offset, char c)
|
StringBuilder |
StringBuilder.insert(int offset, char c)
|
StringBuffer |
StringBuffer.insert(int offset, char[] str)
|
StringBuilder |
StringBuilder.insert(int offset, char[] str)
|
StringBuffer |
StringBuffer.insert(int index, char[] str, int offset, int len)
|
StringBuilder |
StringBuilder.insert(int index, char[] str, int offset, int len)
|
StringBuffer |
StringBuffer.insert(int dstOffset, CharSequence
|
StringBuilder |
StringBuilder.insert(int dstOffset, CharSequence
|
StringBuffer |
StringBuffer.insert(int dstOffset, CharSequence
|
StringBuilder |
StringBuilder.insert(int dstOffset, CharSequence
|
StringBuffer |
StringBuffer.insert(int offset, double d)
|
StringBuilder |
StringBuilder.insert(int offset, double d)
|
StringBuffer |
StringBuffer.insert(int offset, float f)
|
StringBuilder |
StringBuilder.insert(int offset, float f)
|
StringBuffer |
StringBuffer.insert(int offset, int i)
|
StringBuilder |
StringBuilder.insert(int offset, int i)
|
StringBuffer |
StringBuffer.insert(int offset, long l)
|
StringBuilder |
StringBuilder.insert(int offset, long l)
|
StringBuffer |
StringBuffer.insert(int offset, Object
|
StringBuilder |
StringBuilder.insert(int offset, Object
|
StringBuffer |
StringBuffer.insert(int offset, String
|
StringBuilder |
StringBuilder.insert(int offset, String
|
boolean |
Class.isAnnotationPresent(Class
Returns true if an annotation for the specified type is
present on this element, else false.
|
boolean |
Package.isAnnotationPresent(Class
Returns true if an annotation for the specified type is
present on this element, else false.
|
int |
StringBuffer.lastIndexOf(String
|
int |
StringBuilder.lastIndexOf(String
|
int |
StringBuffer.lastIndexOf(String
|
int |
StringBuilder.lastIndexOf(String
|
int |
StringBuffer.length()
|
int |
StringBuffer.offsetByCodePoints(int index, int codePointOffset)
|
StringBuffer |
StringBuffer.replace(int start, int end, String
|
StringBuilder |
StringBuilder.replace(int start, int end, String
|
StringBuffer |
StringBuffer.reverse()
|
StringBuilder |
StringBuilder.reverse()
|
void |
Thread.run()
If this thread was constructed using a separate
Runnable run object, then that
Runnable object's
run method is called; otherwise, this method does nothing and returns.
|
void |
StringBuffer.setCharAt(int index, char ch)
|
void |
StringBuffer.setLength(int newLength)
|
CharSequence |
StringBuffer.subSequence(int start, int end)
|
String |
StringBuffer.substring(int start)
|
String |
StringBuffer.substring(int start, int end)
|
String |
StringBuffer.toString()
|
String |
StringBuilder.toString()
|
void |
StringBuffer.trimToSize()
|
| Modifier and Type | Method and Description |
|---|---|
MethodHandle |
ConstantCallSite.dynamicInvoker()
Returns this call site's permanent target.
|
MethodHandle |
VolatileCallSite.dynamicInvoker()
Produces a method handle equivalent to an invokedynamic instruction which has been linked to this call site.
|
MethodHandle |
MutableCallSite.dynamicInvoker()
Produces a method handle equivalent to an invokedynamic instruction which has been linked to this call site.
|
boolean |
MethodType.equals(Object
Compares the specified object with this type for equality.
|
MethodHandle |
ConstantCallSite.getTarget()
Returns the target method of the call site, which behaves like a
final field of the
ConstantCallSite.
|
MethodHandle |
VolatileCallSite.getTarget()
Returns the target method of the call site, which behaves like a
volatile field of the
VolatileCallSite.
|
MethodHandle |
MutableCallSite.getTarget()
Returns the target method of the call site, which behaves like a normal field of the
MutableCallSite.
|
int |
MethodType.hashCode()
Returns the hash code value for this method type.
|
void |
ConstantCallSite.setTarget(MethodHandle
Always throws an
UnsupportedOperationException.
|
void |
VolatileCallSite.setTarget(MethodHandle
Updates the target method of this call site, as a volatile variable.
|
void |
MutableCallSite.setTarget(MethodHandle
Updates the target method of this call site, as a normal variable.
|
String |
MethodHandle.toString()
Returns a string representation of the method handle, starting with the string
"MethodHandle" and ending with the string representation of the method handle's type.
|
String |
SerializedLambda.toString()
|
String |
MethodType.toString()
Returns a string representation of the method type, of the form
"(PT0,PT1...)RT".
|
String |
MethodHandles.Lookup.toString()
Displays the name of the class from which lookups are to be made.
|
| Modifier and Type | Method and Description |
|---|---|
AnnotatedType |
Constructor.getAnnotatedReceiverType()
Returns an
AnnotatedType object that represents the use of a type to specify the receiver type of the method/constructor represented by this Executable object.
|
AnnotatedType |
Constructor.getAnnotatedReturnType()
Returns an
AnnotatedType object that represents the use of a type to specify the return type of the method/constructor represented by this Executable.
|
AnnotatedType |
Method.getAnnotatedReturnType()
Returns an
AnnotatedType object that represents the use of a type to specify the return type of the method/constructor represented by this Executable.
|
<T extends Annotation |
Parameter.getAnnotationsByType(Class
Returns annotations that are
associated with this element.
|
<T extends Annotation |
AccessibleObject.getAnnotationsByType(Class
|
<T extends Annotation |
Executable.getAnnotationsByType(Class
Returns annotations that are
associated with this element.
|
<T extends Annotation |
Field.getAnnotationsByType(Class
Returns annotations that are
associated with this element.
|
<T extends Annotation |
AccessibleObject.getDeclaredAnnotation(Class
|
<T extends Annotation |
Parameter.getDeclaredAnnotationsByType(Class
|
<T extends Annotation |
AccessibleObject.getDeclaredAnnotationsByType(Class
|
Class |
Constructor.getDeclaringClass()
Returns the
Class object representing the class or interface that declares the executable represented by this object.
|
Class |
Method.getDeclaringClass()
Returns the
Class object representing the class or interface that declares the executable represented by this object.
|
Class |
Constructor.getExceptionTypes()
Returns an array of
Class objects that represent the types of exceptions declared to be thrown by the underlying executable represented by this object.
|
Class |
Method.getExceptionTypes()
Returns an array of
Class objects that represent the types of exceptions declared to be thrown by the underlying executable represented by this object.
|
Type |
Constructor.getGenericExceptionTypes()
Returns an array of
Type objects that represent the exceptions declared to be thrown by this executable object.
|
Type |
Method.getGenericExceptionTypes()
Returns an array of
Type objects that represent the exceptions declared to be thrown by this executable object.
|
Type |
Constructor.getGenericParameterTypes()
Returns an array of
Type objects that represent the formal parameter types, in declaration order, of the executable represented by this object.
|
Type |
Method.getGenericParameterTypes()
Returns an array of
Type objects that represent the formal parameter types, in declaration order, of the executable represented by this object.
|
int |
Constructor.getModifiers()
Returns the Java language
modifiers for the executable represented by this object.
|
int |
Method.getModifiers()
Returns the Java language
modifiers for the executable represented by this object.
|
String |
Constructor.getName()
Returns the name of this constructor, as a string.
|
String |
Method.getName()
Returns the name of the method represented by this
Method object, as a
String.
|
Annotation |
Constructor.getParameterAnnotations()
Returns an array of arrays of
Annotations that represent the annotations on the formal parameters, in declaration order, of the
Executable represented by this object.
|
Annotation |
Method.getParameterAnnotations()
Returns an array of arrays of
Annotations that represent the annotations on the formal parameters, in declaration order, of the
Executable represented by this object.
|
Class |
Constructor.getParameterTypes()
Returns an array of
Class objects that represent the formal parameter types, in declaration order, of the executable represented by this object.
|
Class |
Method.getParameterTypes()
Returns an array of
Class objects that represent the formal parameter types, in declaration order, of the executable represented by this object.
|
TypeVariable |
Constructor.getTypeParameters()
Returns an array of
TypeVariable objects that represent the type variables declared by the generic declaration represented by this
GenericDeclaration object, in declaration order.
|
TypeVariable |
Method.getTypeParameters()
Returns an array of
TypeVariable objects that represent the type variables declared by the generic declaration represented by this
GenericDeclaration object, in declaration order.
|
boolean |
AccessibleObject.isAnnotationPresent(Class
Returns true if an annotation for the specified type is
present on this element, else false.
|
boolean |
Constructor.isSynthetic()
Returns
true if this executable is a synthetic construct; returns
false otherwise.
|
boolean |
Method.isSynthetic()
Returns
true if this executable is a synthetic construct; returns
false otherwise.
|
boolean |
Constructor.isVarArgs()
Returns
true if this executable was declared to take a variable number of arguments; returns
false otherwise.
|
boolean |
Method.isVarArgs()
Returns
true if this executable was declared to take a variable number of arguments; returns
false otherwise.
|
String |
Constructor.toGenericString()
Returns a string describing this
Constructor, including type parameters.
|
String |
Method.toGenericString()
Returns a string describing this
Method, including type parameters.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
BigDecimal.equals(Object
Compares this
BigDecimal with the specified
Object for equality.
|
int |
BigDecimal.hashCode()
Returns the hash code for this
BigDecimal.
|
String |
BigDecimal.toString()
Returns the string representation of this
BigDecimal, using scientific notation if an exponent is needed.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
HttpCookie.clone()
Create and return a copy of this object.
|
boolean |
Inet6Address.equals(Object
Compares this object against the specified object.
|
boolean |
HttpCookie.equals(Object
Test the equality of two HTTP cookies.
|
boolean |
InetSocketAddress.equals(Object
Compares this object against the specified object.
|
byte[] |
Inet6Address.getAddress()
Returns the raw IP address of this
InetAddress object.
|
String |
Inet6Address.getHostAddress()
Returns the IP address string in textual presentation.
|
int |
Inet6Address.hashCode()
Returns a hashcode for this IP address.
|
int |
HttpCookie.hashCode()
Returns the hash code of this HTTP cookie.
|
int |
InetSocketAddress.hashCode()
Returns a hashcode for this socket address.
|
boolean |
Inet6Address.isAnyLocalAddress()
Utility routine to check if the InetAddress in a wildcard address.
|
boolean |
Inet6Address.isLinkLocalAddress()
Utility routine to check if the InetAddress is an link local address.
|
boolean |
Inet6Address.isLoopbackAddress()
Utility routine to check if the InetAddress is a loopback address.
|
boolean |
Inet6Address.isMCGlobal()
Utility routine to check if the multicast address has global scope.
|
boolean |
Inet6Address.isMCLinkLocal()
Utility routine to check if the multicast address has link scope.
|
boolean |
Inet6Address.isMCNodeLocal()
Utility routine to check if the multicast address has node scope.
|
boolean |
Inet6Address.isMCOrgLocal()
Utility routine to check if the multicast address has organization scope.
|
boolean |
Inet6Address.isMCSiteLocal()
Utility routine to check if the multicast address has site scope.
|
boolean |
Inet6Address.isMulticastAddress()
Utility routine to check if the InetAddress is an IP multicast address.
|
boolean |
Inet6Address.isSiteLocalAddress()
Utility routine to check if the InetAddress is a site local address.
|
String |
HttpCookie.toString()
Constructs a cookie header string representation of this cookie, which is in the format defined by corresponding cookie specification, but without the leading "Cookie:" token.
|
String |
InetSocketAddress.toString()
Constructs a string representation of this InetSocketAddress.
|
| Modifier and Type | Method and Description |
|---|---|
IntStream |
CharBuffer.chars()
|
| Modifier and Type | Method and Description |
|---|---|
abstract AsynchronousSocketChannel |
AsynchronousSocketChannel.bind(SocketAddress
|
abstract SocketChannel |
SocketChannel.bind(SocketAddress
|
void |
AsynchronousChannel.close()
Closes this channel.
|
void |
MulticastChannel.close()
Closes this channel.
|
abstract SocketAddress |
DatagramChannel.getLocalAddress()
Returns the socket address that this channel's socket is bound to.
|
abstract SocketAddress |
ServerSocketChannel.getLocalAddress()
Returns the socket address that this channel's socket is bound to.
|
abstract SocketAddress |
AsynchronousServerSocketChannel.getLocalAddress()
Returns the socket address that this channel's socket is bound to.
|
abstract SocketAddress |
SocketChannel.getLocalAddress()
Returns the socket address that this channel's socket is bound to.
|
abstract Future |
AsynchronousSocketChannel.read(ByteBuffer
|
int |
SeekableByteChannel.read(ByteBuffer
Reads a sequence of bytes from this channel into the given buffer.
|
<A> void |
AsynchronousSocketChannel.read(ByteBuffer
|
abstract <T> AsynchronousSocketChannel |
AsynchronousSocketChannel.setOption(SocketOption
|
abstract <T> SocketChannel |
SocketChannel.setOption(SocketOption
|
abstract Future |
AsynchronousSocketChannel.write(ByteBuffer
|
int |
SeekableByteChannel.write(ByteBuffer
Writes a sequence of bytes to this channel from the given buffer.
|
<A> void |
AsynchronousSocketChannel.write(ByteBuffer
|
| Modifier and Type | Method and Description |
|---|---|
void |
WatchService.close()
Closes this watch service.
|
abstract void |
FileSystem.close()
Closes this file system.
|
int |
Path.compareTo(Path
Compares two abstract paths lexicographically.
|
IOException |
DirectoryIteratorException.getCause()
Returns the cause of this exception.
|
String |
FileSystemException.getMessage()
Returns the detail message string.
|
Iterator |
Path.iterator()
Returns an iterator over the name elements of this path.
|
Iterator |
DirectoryStream.iterator()
Returns the iterator associated with this
DirectoryStream.
|
FileVisitResult |
SimpleFileVisitor.postVisitDirectory(T dir, IOException
Invoked for a directory after entries in the directory, and all of their descendants, have been visited.
|
FileVisitResult |
SimpleFileVisitor.preVisitDirectory(T dir, BasicFileAttributes
Invoked for a directory before entries in the directory are visited.
|
WatchKey |
Path.register(WatchService
Registers the file located by this path with a watch service.
|
WatchKey |
Path.register(WatchService
Registers the file located by this path with a watch service.
|
FileVisitResult |
SimpleFileVisitor.visitFile(T file, BasicFileAttributes
Invoked for a file in a directory.
|
FileVisitResult |
SimpleFileVisitor.visitFileFailed(T file, IOException
Invoked for a file that could not be visited.
|
| Modifier and Type | Method and Description |
|---|---|
int |
FileTime.compareTo(FileTime
Compares the value of two
FileTime objects for order.
|
boolean |
AclEntry.equals(Object
Compares the specified object with this ACL entry for equality.
|
boolean |
FileTime.equals(Object
Tests this
FileTime for equality with the given object.
|
int |
AclEntry.hashCode()
Returns the hash-code value for this ACL entry.
|
int |
FileTime.hashCode()
Computes a hash code for this file time.
|
String |
FileOwnerAttributeView.name()
Returns the name of the attribute view.
|
String |
AclFileAttributeView.name()
Returns the name of the attribute view.
|
String |
UserDefinedFileAttributeView.name()
Returns the name of this attribute view.
|
String |
DosFileAttributeView.name()
Returns the name of the attribute view.
|
String |
PosixFileAttributeView.name()
Returns the name of the attribute view.
|
String |
BasicFileAttributeView.name()
Returns the name of the attribute view.
|
DosFileAttributes |
DosFileAttributeView.readAttributes()
|
PosixFileAttributes |
PosixFileAttributeView.readAttributes()
|
String |
AclEntry.toString()
Returns the string representation of this ACL entry.
|
String |
FileTime.toString()
Returns the string representation of this
FileTime.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Provider.clear()
Clears this provider so that it no longer contains the properties used to look up facilities implemented by the provider.
|
Object |
Provider.compute(Object
Attempts to compute a mapping for the specified key and its current mapped value (or
null if there is no current mapping).
|
Object |
Provider.computeIfAbsent(Object
If the specified key is not already associated with a value (or is mapped to
null), attempts to compute its value using the given mapping function and enters it into this map unless
null.
|
Object |
Provider.computeIfPresent(Object
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
|
Enumeration |
Provider.elements()
|
Set |
Provider.entrySet()
Returns an unmodifiable Set view of the property entries contained in this Provider.
|
boolean |
CodeSource.equals(Object
Tests for equality between the specified object and this object.
|
boolean |
PKCS12Attribute.equals(Object
Compares this
PKCS12Attribute and a specified object for equality.
|
void |
Provider.forEach(BiConsumer
|
Object |
Provider.get(Object
|
Set |
KeyStore.PrivateKeyEntry.getAttributes()
Retrieves the attributes associated with an entry.
|
Set |
KeyStore.SecretKeyEntry.getAttributes()
Retrieves the attributes associated with an entry.
|
Set |
KeyStore.TrustedCertificateEntry.getAttributes()
Retrieves the attributes associated with an entry.
|
String |
PKCS12Attribute.getName()
Returns the attribute's ASN.1 Object Identifier represented as a list of dot-separated integers.
|
Object |
Provider.getOrDefault(Object
|
KeyStore |
DomainLoadStoreParameter.getProtectionParameter()
Gets the keystore protection parameters for this domain.
|
String |
PKCS12Attribute.getValue()
Returns the attribute's ASN.1 DER-encoded value as a string.
|
int |
CodeSource.hashCode()
Returns the hash code value for this object.
|
int |
PKCS12Attribute.hashCode()
Returns the hashcode for this
PKCS12Attribute.
|
Enumeration |
Provider.keys()
|
Set |
Provider.keySet()
Returns an unmodifiable Set view of the property keys contained in this provider.
|
void |
Provider.load(InputStream
Reads a property list (key and element pairs) from the input stream.
|
Object |
Provider.merge(Object
If the specified key is not already associated with a value or is associated with null, associates it with the given value.
|
protected int |
SecureRandom.next(int numBits)
Generates an integer containing the user-specified number of pseudo-random bits (right justified, with leading zeros).
|
void |
SecureRandom.nextBytes(byte[] bytes)
Generates a user-specified number of random bytes.
|
Object |
Provider.put(Object
Sets the
key property to have the specified
value.
|
void |
Provider.putAll(Map
Copies all of the mappings from the specified Map to this provider.
|
Object |
Provider.putIfAbsent(Object
If the specified key is not already associated with a value (or is mapped to
null) associates it with the given value and returns
null, else returns the current value.
|
Object |
Provider.remove(Object
Removes the
key property (and its corresponding
value).
|
boolean |
Provider.remove(Object
Removes the entry for the specified key only if it is currently mapped to the specified value.
|
Object |
Provider.replace(Object
Replaces the entry for the specified key only if it is currently mapped to some value.
|
boolean |
Provider.replace(Object
Replaces the entry for the specified key only if currently mapped to the specified value.
|
void |
Provider.replaceAll(BiFunction
Replaces each entry's value with the result of invoking the given function on that entry, in the order entries are returned by an entry set iterator, until all entries have been processed or the function throws an exception.
|
void |
SecureRandom.setSeed(long seed)
Reseeds this random object, using the eight bytes contained in the given
long seed.
|
String |
CodeSource.toString()
Returns a string describing this CodeSource, telling its URL and certificates.
|
String |
PKCS12Attribute.toString()
Returns a string representation of this
PKCS12Attribute.
|
String |
ProtectionDomain.toString()
Convert a ProtectionDomain to a String.
|
Collection |
Provider.values()
Returns an unmodifiable Collection view of the property values contained in this provider.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PKIXCertPathChecker.check(Certificate
Performs the check(s) on the specified certificate using its internal state.
|
PKIXRevocationChecker |
PKIXRevocationChecker.clone()
|
Object |
PKIXCertPathChecker.clone()
Returns a clone of this object.
|
String |
CertificateRevokedException.getMessage()
|
abstract void |
PKIXCertPathChecker.init(boolean forward)
Initializes the internal state of this
PKIXCertPathChecker.
|
abstract boolean |
PKIXCertPathChecker.isForwardCheckingSupported()
Indicates if forward checking is supported.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Timestamp.hashCode()
Returns a hash code value for this object.
|
Instant |
Date.toInstant()
This method always throws an UnsupportedOperationException and should not be used because SQL
Date values do not have a time component.
|
Instant |
Timestamp.toInstant()
Converts this
Timestamp object to an
Instant.
|
Instant |
Time.toInstant()
This method always throws an UnsupportedOperationException and should not be used because SQL
Time values do not have a date component.
|
| Modifier and Type | Method and Description |
|---|---|
Object |
NumberFormat.clone()
Overrides Cloneable.
|
Object |
DecimalFormat.clone()
Standard override; no change in semantics.
|
Object |
BreakIterator.clone()
Create a copy of this iterator
|
Object |
Collator.clone()
Overrides Cloneable
|
Object |
DecimalFormatSymbols.clone()
Standard override.
|
Object |
SimpleDateFormat.clone()
Creates a copy of this
SimpleDateFormat.
|
int |
Collator.compare(Object
Compares its two arguments for order.
|
boolean |
NumberFormat.equals(Object
Overrides equals.
|
boolean |
DecimalFormat.equals(Object
Overrides equals
|
boolean |
Collator.equals(Object
Compares the equality of two Collators.
|
boolean |
DecimalFormatSymbols.equals(Object
Override equals.
|
boolean |
SimpleDateFormat.equals(Object
Compares the given object with this
SimpleDateFormat for equality.
|
StringBuffer |
SimpleDateFormat.format(Date
Formats the given
Date into a date/time string and appends the result to the given
StringBuffer.
|
StringBuffer |
DecimalFormat.format(double number, StringBuffer
Formats a double to produce a string.
|
StringBuffer |
DecimalFormat.format(long number, StringBuffer
Format a long to produce a string.
|
StringBuffer |
NumberFormat.format(Object
Formats a number and appends the resulting text to the given string buffer.
|
StringBuffer |
DecimalFormat.format(Object
Formats a number and appends the resulting text to the given string buffer.
|
AttributedCharacterIterator |
DecimalFormat.formatToCharacterIterator(Object
Formats an Object producing an
AttributedCharacterIterator.
|
AttributedCharacterIterator |
SimpleDateFormat.formatToCharacterIterator(Object
Formats an Object producing an
AttributedCharacterIterator.
|
Currency |
DecimalFormat.getCurrency()
Gets the currency used by this decimal format when formatting currency values.
|
int |
DecimalFormat.getMaximumFractionDigits()
Gets the maximum number of digits allowed in the fraction portion of a number.
|
int |
DecimalFormat.getMaximumIntegerDigits()
Gets the maximum number of digits allowed in the integer portion of a number.
|
int |
DecimalFormat.getMinimumFractionDigits()
Gets the minimum number of digits allowed in the fraction portion of a number.
|
int |
DecimalFormat.getMinimumIntegerDigits()
Gets the minimum number of digits allowed in the integer portion of a number.
|
RoundingMode |
DecimalFormat.getRoundingMode()
Gets the
RoundingMode used in this DecimalFormat.
|
int |
NumberFormat.hashCode()
Overrides hashCode.
|
int |
DecimalFormat.hashCode()
Overrides hashCode
|
abstract int |
Collator.hashCode()
Generates the hash code for this Collator.
|
int |
DateFormatSymbols.hashCode()
Override hashCode.
|
int |
DecimalFormatSymbols.hashCode()
Override hashCode.
|
int |
SimpleDateFormat.hashCode()
Returns the hash code value for this
SimpleDateFormat object.
|
Number |
DecimalFormat.parse(String
Parses text from a string to produce a
Number.
|
Date |
SimpleDateFormat.parse(String
Parses text from a string to produce a
Date.
|
Object |
NumberFormat.parseObject(String
Parses text from a string to produce a
Number.
|
protected Object |
NumberFormat.Field.readResolve()
Resolves instances being deserialized to the predefined constants.
|
protected Object |
DateFormat.Field.readResolve()
Resolves instances being deserialized to the predefined constants.
|
void |
DecimalFormat.setCurrency(Currency
Sets the currency used by this number format when formatting currency values.
|
void |
DecimalFormat.setGroupingUsed(boolean newValue)
Set whether or not grouping will be used in this format.
|
void |
DecimalFormat.setMaximumFractionDigits(int newValue)
Sets the maximum number of digits allowed in the fraction portion of a number.
|
void |
DecimalFormat.setMaximumIntegerDigits(int newValue)
Sets the maximum number of digits allowed in the integer portion of a number.
|
void |
DecimalFormat.setMinimumFractionDigits(int newValue)
Sets the minimum number of digits allowed in the fraction portion of a number.
|
void |
DecimalFormat.setMinimumIntegerDigits(int newValue)
Sets the minimum number of digits allowed in the integer portion of a number.
|
void |
DecimalFormat.setRoundingMode(RoundingMode
Sets the
RoundingMode used in this DecimalFormat.
|
| Modifier and Type | Method and Description |
|---|---|
Temporal |
Period.addTo(Temporal
Adds this period to the specified temporal object.
|
Temporal |
Duration.addTo(Temporal
Adds this duration to the specified temporal object.
|
Temporal |
LocalTime.adjustInto(Temporal
Adjusts the specified temporal object to have the same time as this object.
|
Temporal |
YearMonth.adjustInto(Temporal
Adjusts the specified temporal object to have this year-month.
|
Temporal |
LocalDate.adjustInto(Temporal
Adjusts the specified temporal object to have the same date as this object.
|
Temporal |
OffsetTime.adjustInto(Temporal
Adjusts the specified temporal object to have the same offset and time as this object.
|
Temporal |
DayOfWeek.adjustInto(Temporal
Adjusts the specified temporal object to have this day-of-week.
|
Temporal |
Year.adjustInto(Temporal
Adjusts the specified temporal object to have this year.
|
Temporal |
ZoneOffset.adjustInto(Temporal
Adjusts the specified temporal object to have the same offset as this object.
|
Temporal |
OffsetDateTime.adjustInto(Temporal
Adjusts the specified temporal object to have the same offset, date and time as this object.
|
Temporal |
LocalDateTime.adjustInto(Temporal
Adjusts the specified temporal object to have the same date and time as this object.
|
Temporal |
MonthDay.adjustInto(Temporal
Adjusts the specified temporal object to have this month-day.
|
Temporal |
Month.adjustInto(Temporal
Adjusts the specified temporal object to have this month-of-year.
|
Temporal |
Instant.adjustInto(Temporal
Adjusts the specified temporal object to have this instant.
|
LocalDateTime |
LocalDate.atTime(LocalTime
Combines this date with a time to create a
LocalDateTime.
|
ZonedDateTime |
LocalDateTime.atZone(ZoneId
Combines this date-time with a time-zone to create a
ZonedDateTime.
|
int |
LocalDate.compareTo(ChronoLocalDate
Compares this date to another date.
|
int |
LocalDateTime.compareTo(ChronoLocalDateTime
Compares this date-time to another date-time.
|
int |
Duration.compareTo(Duration
Compares this duration to the specified
Duration.
|
int |
Instant.compareTo(Instant
Compares this instant to the specified instant.
|
int |
LocalTime.compareTo(LocalTime
Compares this
LocalTime to another time.
|
int |
MonthDay.compareTo(MonthDay
Compares this month-day to another month-day.
|
int |
OffsetDateTime.compareTo(OffsetDateTime
Compares this
OffsetDateTime to another date-time.
|
int |
OffsetTime.compareTo(OffsetTime
Compares this
OffsetTime to another time.
|
int |
Year.compareTo(Year
Compares this year to another year.
|
int |
YearMonth.compareTo(YearMonth
Compares this year-month to another year-month.
|
int |
ZoneOffset.compareTo(ZoneOffset
Compares this offset to another offset in descending order.
|
boolean |
LocalTime.equals(Object
Checks if this time is equal to another time.
|
boolean |
YearMonth.equals(Object
Checks if this year-month is equal to another year-month.
|
boolean |
LocalDate.equals(Object
Checks if this date is equal to another date.
|
boolean |
OffsetTime.equals(Object
Checks if this time is equal to another time.
|
boolean |
Clock.equals(Object
Checks if this clock is equal to another clock.
|
boolean |
Period.equals(Object
Checks if this period is equal to another period.
|
boolean |
Year.equals(Object
Checks if this year is equal to another year.
|
boolean |
ZoneOffset.equals(Object
Checks if this offset is equal to another offset.
|
boolean |
ZonedDateTime.equals(Object
Checks if this date-time is equal to another date-time.
|
boolean |
OffsetDateTime.equals(Object
Checks if this date-time is equal to another date-time.
|
boolean |
LocalDateTime.equals(Object
Checks if this date-time is equal to another date-time.
|
boolean |
Duration.equals(Object
Checks if this duration is equal to the specified
Duration.
|
boolean |
ZoneId.equals(Object
Checks if this time-zone ID is equal to another time-zone ID.
|
boolean |
MonthDay.equals(Object
Checks if this month-day is equal to another month-day.
|
boolean |
Instant.equals(Object
Checks if this instant is equal to the specified instant.
|
String |
LocalDate.format(DateTimeFormatter
Formats this date using the specified formatter.
|
String |
ZonedDateTime.format(DateTimeFormatter
Formats this date-time using the specified formatter.
|
String |
LocalDateTime.format(DateTimeFormatter
Formats this date-time using the specified formatter.
|
int |
LocalTime.get(TemporalField
Gets the value of the specified field from this time as an
int.
|
int |
YearMonth.get(TemporalField
Gets the value of the specified field from this year-month as an
int.
|
int |
LocalDate.get(TemporalField
Gets the value of the specified field from this date as an
int.
|
int |
OffsetTime.get(TemporalField
Gets the value of the specified field from this time as an
int.
|
int |
DayOfWeek.get(TemporalField
Gets the value of the specified field from this day-of-week as an
int.
|
int |
Year.get(TemporalField
Gets the value of the specified field from this year as an
int.
|
int |
ZoneOffset.get(TemporalField
Gets the value of the specified field from this offset as an
int.
|
int |
ZonedDateTime.get(TemporalField
Gets the value of the specified field from this date-time as an
int.
|
int |
OffsetDateTime.get(TemporalField
Gets the value of the specified field from this date-time as an
int.
|
int |
LocalDateTime.get(TemporalField
Gets the value of the specified field from this date-time as an
int.
|
int |
MonthDay.get(TemporalField
Gets the value of the specified field from this month-day as an
int.
|
int |
Month.get(TemporalField
Gets the value of the specified field from this month-of-year as an
int.
|
int |
Instant.get(TemporalField
Gets the value of the specified field from this instant as an
int.
|
long |
Period.get(TemporalUnit
Gets the value of the requested unit.
|
long |
Duration.get(TemporalUnit
Gets the value of the requested unit.
|
IsoChronology |
LocalDate.getChronology()
Gets the chronology of this date, which is the ISO calendar system.
|
IsoChronology |
Period.getChronology()
Gets the chronology of this period, which is the ISO calendar system.
|
Era |
LocalDate.getEra()
Gets the era applicable at this date.
|
String |
ZoneOffset.getId()
Gets the normalized zone offset ID.
|
long |
LocalTime.getLong(TemporalField
Gets the value of the specified field from this time as a
long.
|
long |
YearMonth.getLong(TemporalField
Gets the value of the specified field from this year-month as a
long.
|
long |
LocalDate.getLong(TemporalField
Gets the value of the specified field from this date as a
long.
|
long |
OffsetTime.getLong(TemporalField
Gets the value of the specified field from this time as a
long.
|
long |
DayOfWeek.getLong(TemporalField
Gets the value of the specified field from this day-of-week as a
long.
|
long |
Year.getLong(TemporalField
Gets the value of the specified field from this year as a
long.
|
long |
ZoneOffset.getLong(TemporalField
Gets the value of the specified field from this offset as a
long.
|
long |
ZonedDateTime.getLong(TemporalField
Gets the value of the specified field from this date-time as a
long.
|
long |
OffsetDateTime.getLong(TemporalField
Gets the value of the specified field from this date-time as a
long.
|
long |
LocalDateTime.getLong(TemporalField
Gets the value of the specified field from this date-time as a
long.
|
long |
MonthDay.getLong(TemporalField
Gets the value of the specified field from this month-day as a
long.
|
long |
Month.getLong(TemporalField
Gets the value of the specified field from this month-of-year as a
long.
|
long |
Instant.getLong(TemporalField
Gets the value of the specified field from this instant as a
long.
|
ZoneOffset |
ZonedDateTime.getOffset()
Gets the zone offset, such as '+01:00'.
|
ZoneRules |
ZoneOffset.getRules()
Gets the associated time-zone rules.
|
List |
Period.getUnits()
Gets the set of units supported by this period.
|
List |
Duration.getUnits()
Gets the set of units supported by this duration.
|
ZoneId |
ZonedDateTime.getZone()
Gets the time-zone, such as 'Europe/Paris'.
|
int |
LocalTime.hashCode()
A hash code for this time.
|
int |
YearMonth.hashCode()
A hash code for this year-month.
|
int |
LocalDate.hashCode()
A hash code for this date.
|
int |
OffsetTime.hashCode()
A hash code for this time.
|
int |
Clock.hashCode()
A hash code for this clock.
|
int |
Period.hashCode()
A hash code for this period.
|
int |
Year.hashCode()
A hash code for this year.
|
int |
ZoneOffset.hashCode()
A hash code for this offset.
|
int |
ZonedDateTime.hashCode()
A hash code for this date-time.
|
int |
OffsetDateTime.hashCode()
A hash code for this date-time.
|
int |
LocalDateTime.hashCode()
A hash code for this date-time.
|
int |
Duration.hashCode()
A hash code for this duration.
|
int |
ZoneId.hashCode()
A hash code for this time-zone ID.
|
int |
MonthDay.hashCode()
A hash code for this month-day.
|
int |
Instant.hashCode()
Returns a hash code for this instant.
|
boolean |
LocalDate.isAfter(ChronoLocalDate
Checks if this date is after the specified date.
|
boolean |
LocalDateTime.isAfter(ChronoLocalDateTime
Checks if this date-time is after the specified date-time.
|
boolean |
LocalDate.isBefore(ChronoLocalDate
Checks if this date is before the specified date.
|
boolean |
LocalDateTime.isBefore(ChronoLocalDateTime
Checks if this date-time is before the specified date-time.
|
boolean |
LocalDate.isEqual(ChronoLocalDate
Checks if this date is equal to the specified date.
|
boolean |
LocalDateTime.isEqual(ChronoLocalDateTime
Checks if this date-time is equal to the specified date-time.
|
boolean |
LocalDate.isLeapYear()
Checks if the year is a leap year, according to the ISO proleptic calendar system rules.
|
boolean |
LocalTime.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
YearMonth.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
LocalDate.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
OffsetTime.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
DayOfWeek.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
Year.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
ZoneOffset.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
ZonedDateTime.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
OffsetDateTime.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
LocalDateTime.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
MonthDay.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
Month.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
Instant.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
LocalTime.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
YearMonth.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
LocalDate.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
OffsetTime.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
Year.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
ZonedDateTime.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
OffsetDateTime.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
LocalDateTime.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
boolean |
Instant.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
int |
LocalDate.lengthOfMonth()
Returns the length of the month represented by this date.
|
int |
LocalDate.lengthOfYear()
Returns the length of the year represented by this date.
|
LocalTime |
LocalTime.minus(long amountToSubtract, TemporalUnit
Returns a copy of this time with the specified amount subtracted.
|
YearMonth |
YearMonth.minus(long amountToSubtract, TemporalUnit
Returns a copy of this year-month with the specified amount subtracted.
|
LocalDate |
LocalDate.minus(long amountToSubtract, TemporalUnit
Returns a copy of this date with the specified amount subtracted.
|
OffsetTime |
OffsetTime.minus(long amountToSubtract, TemporalUnit
Returns a copy of this time with the specified amount subtracted.
|
Year |
Year.minus(long amountToSubtract, TemporalUnit
Returns a copy of this year with the specified amount subtracted.
|
ZonedDateTime |
ZonedDateTime.minus(long amountToSubtract, TemporalUnit
Returns a copy of this date-time with the specified amount subtracted.
|
OffsetDateTime |
OffsetDateTime.minus(long amountToSubtract, TemporalUnit
Returns a copy of this date-time with the specified amount subtracted.
|
LocalDateTime |
LocalDateTime.minus(long amountToSubtract, TemporalUnit
Returns a copy of this date-time with the specified amount subtracted.
|
Instant |
Instant.minus(long amountToSubtract, TemporalUnit
Returns a copy of this instant with the specified amount subtracted.
|
LocalTime |
LocalTime.minus(TemporalAmount
Returns a copy of this time with the specified amount subtracted.
|
YearMonth |
YearMonth.minus(TemporalAmount
Returns a copy of this year-month with the specified amount subtracted.
|
LocalDate |
LocalDate.minus(TemporalAmount
Returns a copy of this date with the specified amount subtracted.
|
OffsetTime |
OffsetTime.minus(TemporalAmount
Returns a copy of this time with the specified amount subtracted.
|
Year |
Year.minus(TemporalAmount
Returns a copy of this year with the specified amount subtracted.
|
ZonedDateTime |
ZonedDateTime.minus(TemporalAmount
Returns a copy of this date-time with the specified amount subtracted.
|
OffsetDateTime |
OffsetDateTime.minus(TemporalAmount
Returns a copy of this date-time with the specified amount subtracted.
|
LocalDateTime |
LocalDateTime.minus(TemporalAmount
Returns a copy of this date-time with the specified amount subtracted.
|
Instant |
Instant.minus(TemporalAmount
Returns a copy of this instant with the specified amount subtracted.
|
LocalTime |
LocalTime.plus(long amountToAdd, TemporalUnit
Returns a copy of this time with the specified amount added.
|
YearMonth |
YearMonth.plus(long amountToAdd, TemporalUnit
Returns a copy of this year-month with the specified amount added.
|
LocalDate |
LocalDate.plus(long amountToAdd, TemporalUnit
Returns a copy of this date with the specified amount added.
|
OffsetTime |
OffsetTime.plus(long amountToAdd, TemporalUnit
Returns a copy of this time with the specified amount added.
|
Year |
Year.plus(long amountToAdd, TemporalUnit
Returns a copy of this year with the specified amount added.
|
ZonedDateTime |
ZonedDateTime.plus(long amountToAdd, TemporalUnit
Returns a copy of this date-time with the specified amount added.
|
OffsetDateTime |
OffsetDateTime.plus(long amountToAdd, TemporalUnit
Returns a copy of this date-time with the specified amount added.
|
LocalDateTime |
LocalDateTime.plus(long amountToAdd, TemporalUnit
Returns a copy of this date-time with the specified amount added.
|
Instant |
Instant.plus(long amountToAdd, TemporalUnit
Returns a copy of this instant with the specified amount added.
|
LocalTime |
LocalTime.plus(TemporalAmount
Returns a copy of this time with the specified amount added.
|
YearMonth |
YearMonth.plus(TemporalAmount
Returns a copy of this year-month with the specified amount added.
|
LocalDate |
LocalDate.plus(TemporalAmount
Returns a copy of this date with the specified amount added.
|
OffsetTime |
OffsetTime.plus(TemporalAmount
Returns a copy of this time with the specified amount added.
|
Year |
Year.plus(TemporalAmount
Returns a copy of this year with the specified amount added.
|
ZonedDateTime |
ZonedDateTime.plus(TemporalAmount
Returns a copy of this date-time with the specified amount added.
|
OffsetDateTime |
OffsetDateTime.plus(TemporalAmount
Returns a copy of this date-time with the specified amount added.
|
LocalDateTime |
LocalDateTime.plus(TemporalAmount
Returns a copy of this date-time with the specified amount added.
|
Instant |
Instant.plus(TemporalAmount
Returns a copy of this instant with the specified amount added.
|
<R> R |
LocalTime.query(TemporalQuery
Queries this time using the specified query.
|
<R> R |
YearMonth.query(TemporalQuery
Queries this year-month using the specified query.
|
<R> R |
LocalDate.query(TemporalQuery
Queries this date using the specified query.
|
<R> R |
OffsetTime.query(TemporalQuery
Queries this time using the specified query.
|
<R> R |
DayOfWeek.query(TemporalQuery
Queries this day-of-week using the specified query.
|
<R> R |
Year.query(TemporalQuery
Queries this year using the specified query.
|
<R> R |
ZoneOffset.query(TemporalQuery
Queries this offset using the specified query.
|
<R> R |
ZonedDateTime.query(TemporalQuery
Queries this date-time using the specified query.
|
<R> R |
OffsetDateTime.query(TemporalQuery
Queries this date-time using the specified query.
|
<R> R |
LocalDateTime.query(TemporalQuery
Queries this date-time using the specified query.
|
<R> R |
MonthDay.query(TemporalQuery
Queries this month-day using the specified query.
|
<R> R |
Month.query(TemporalQuery
Queries this month-of-year using the specified query.
|
<R> R |
Instant.query(TemporalQuery
Queries this instant using the specified query.
|
ValueRange |
LocalTime.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
YearMonth.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
LocalDate.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
OffsetTime.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
DayOfWeek.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
Year.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
ZoneOffset.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
ZonedDateTime.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
OffsetDateTime.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
LocalDateTime.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
MonthDay.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
Month.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
Instant.range(TemporalField
Gets the range of valid values for the specified field.
|
Temporal |
Period.subtractFrom(Temporal
Subtracts this period from the specified temporal object.
|
Temporal |
Duration.subtractFrom(Temporal
Subtracts this duration from the specified temporal object.
|
long |
LocalDate.toEpochDay()
|
LocalDate |
ZonedDateTime.toLocalDate()
Gets the
LocalDate part of this date-time.
|
LocalDate |
LocalDateTime.toLocalDate()
Gets the
LocalDate part of this date-time.
|
LocalDateTime |
ZonedDateTime.toLocalDateTime()
Gets the
LocalDateTime part of this date-time.
|
LocalTime |
ZonedDateTime.toLocalTime()
Gets the
LocalTime part of this date-time.
|
LocalTime |
LocalDateTime.toLocalTime()
Gets the
LocalTime part of this date-time.
|
String |
LocalTime.toString()
Outputs this time as a
String, such as
10:15.
|
String |
YearMonth.toString()
Outputs this year-month as a
String, such as
2007-12.
|
String |
LocalDate.toString()
Outputs this date as a
String, such as
2007-12-03.
|
String |
OffsetTime.toString()
Outputs this time as a
String, such as
10:15:30+01:00.
|
String |
Period.toString()
Outputs this period as a
String, such as
P6Y3M1D.
|
String |
Year.toString()
Outputs this year as a
String.
|
String |
ZoneOffset.toString()
Outputs this offset as a
String, using the normalized ID.
|
String |
ZonedDateTime.toString()
Outputs this date-time as a
String, such as
2007-12-03T10:15:30+01:00[Europe/Paris].
|
String |
OffsetDateTime.toString()
Outputs this date-time as a
String, such as
2007-12-03T10:15:30+01:00.
|
String |
LocalDateTime.toString()
Outputs this date-time as a
String, such as
2007-12-03T10:15:30.
|
String |
Duration.toString()
A string representation of this duration using ISO-8601 seconds based representation, such as
PT8H6M12.345S.
|
String |
ZoneId.toString()
Outputs this zone as a
String, using the ID.
|
String |
MonthDay.toString()
Outputs this month-day as a
String, such as
--12-03.
|
String |
Instant.toString()
A string representation of this instant using ISO-8601 representation.
|
Period |
LocalDate.until(ChronoLocalDate
Calculates the period between this date and another date as a
Period.
|
long |
LocalTime.until(Temporal
Calculates the amount of time until another time in terms of the specified unit.
|
long |
YearMonth.until(Temporal
Calculates the amount of time until another year-month in terms of the specified unit.
|
long |
LocalDate.until(Temporal
Calculates the amount of time until another date in terms of the specified unit.
|
long |
OffsetTime.until(Temporal
Calculates the amount of time until another time in terms of the specified unit.
|
long |
Year.until(Temporal
Calculates the amount of time until another year in terms of the specified unit.
|
long |
ZonedDateTime.until(Temporal
Calculates the amount of time until another date-time in terms of the specified unit.
|
long |
OffsetDateTime.until(Temporal
Calculates the amount of time until another date-time in terms of the specified unit.
|
long |
LocalDateTime.until(Temporal
Calculates the amount of time until another date-time in terms of the specified unit.
|
long |
Instant.until(Temporal
Calculates the amount of time until another instant in terms of the specified unit.
|
LocalTime |
LocalTime.with(TemporalAdjuster
Returns an adjusted copy of this time.
|
YearMonth |
YearMonth.with(TemporalAdjuster
Returns an adjusted copy of this year-month.
|
LocalDate |
LocalDate.with(TemporalAdjuster
Returns an adjusted copy of this date.
|
OffsetTime |
OffsetTime.with(TemporalAdjuster
Returns an adjusted copy of this time.
|
Year |
Year.with(TemporalAdjuster
Returns an adjusted copy of this year.
|
ZonedDateTime |
ZonedDateTime.with(TemporalAdjuster
Returns an adjusted copy of this date-time.
|
OffsetDateTime |
OffsetDateTime.with(TemporalAdjuster
Returns an adjusted copy of this date-time.
|
LocalDateTime |
LocalDateTime.with(TemporalAdjuster
Returns an adjusted copy of this date-time.
|
Instant |
Instant.with(TemporalAdjuster
Returns an adjusted copy of this instant.
|
LocalTime |
LocalTime.with(TemporalField
Returns a copy of this time with the specified field set to a new value.
|
YearMonth |
YearMonth.with(TemporalField
Returns a copy of this year-month with the specified field set to a new value.
|
LocalDate |
LocalDate.with(TemporalField
Returns a copy of this date with the specified field set to a new value.
|
OffsetTime |
OffsetTime.with(TemporalField
Returns a copy of this time with the specified field set to a new value.
|
Year |
Year.with(TemporalField
Returns a copy of this year with the specified field set to a new value.
|
ZonedDateTime |
ZonedDateTime.with(TemporalField
Returns a copy of this date-time with the specified field set to a new value.
|
OffsetDateTime |
OffsetDateTime.with(TemporalField
Returns a copy of this date-time with the specified field set to a new value.
|
LocalDateTime |
LocalDateTime.with(TemporalField
Returns a copy of this date-time with the specified field set to a new value.
|
Instant |
Instant.with(TemporalField
Returns a copy of this instant with the specified field set to a new value.
|
ZonedDateTime |
ZonedDateTime.withEarlierOffsetAtOverlap()
Returns a copy of this date-time changing the zone offset to the earlier of the two valid offsets at a local time-line overlap.
|
ZonedDateTime |
ZonedDateTime.withLaterOffsetAtOverlap()
Returns a copy of this date-time changing the zone offset to the later of the two valid offsets at a local time-line overlap.
|
ZonedDateTime |
ZonedDateTime.withZoneSameInstant(ZoneId
Returns a copy of this date-time with a different time-zone, retaining the instant.
|
ZonedDateTime |
ZonedDateTime.withZoneSameLocal(ZoneId
Returns a copy of this date-time with a different time-zone, retaining the local date-time if possible.
|
| Modifier and Type | Method and Description |
|---|---|
Temporal |
ChronoPeriod.addTo(Temporal
Adds this period to the specified temporal object.
|
default Temporal |
ChronoLocalDate.adjustInto(Temporal
Adjusts the specified temporal object to have the same date as this object.
|
default Temporal |
ChronoLocalDateTime.adjustInto(Temporal
Adjusts the specified temporal object to have the same date and time as this object.
|
default Temporal |
Era.adjustInto(Temporal
Adjusts the specified temporal object to have the same era as this object.
|
ChronoLocalDateTime |
JapaneseDate.atTime(LocalTime
|
ChronoLocalDateTime |
HijrahDate.atTime(LocalTime
|
ChronoLocalDateTime |
ThaiBuddhistDate.atTime(LocalTime
|
ChronoLocalDateTime |
MinguoDate.atTime(LocalTime
|
default int |
ChronoLocalDate.compareTo(ChronoLocalDate
Compares this date to another date, including the chronology.
|
default int |
ChronoLocalDateTime.compareTo(ChronoLocalDateTime
Compares this date-time to another date-time, including the chronology.
|
int |
Chronology.compareTo(Chronology
Compares this chronology to another chronology.
|
int |
AbstractChronology.compareTo(Chronology
Compares this chronology to another chronology.
|
default int |
ChronoZonedDateTime.compareTo(ChronoZonedDateTime
Compares this date-time to another date-time, including the chronology.
|
HijrahDate |
HijrahChronology.date(Era
Obtains a local date in Hijrah calendar system from the era, year-of-era, month-of-year and day-of-month fields.
|
ThaiBuddhistDate |
ThaiBuddhistChronology.date(Era
Obtains a local date in Thai Buddhist calendar system from the era, year-of-era, month-of-year and day-of-month fields.
|
LocalDate |
IsoChronology.date(Era
Obtains an ISO local date from the era, year-of-era, month-of-year and day-of-month fields.
|
MinguoDate |
MinguoChronology.date(Era
Obtains a local date in Minguo calendar system from the era, year-of-era, month-of-year and day-of-month fields.
|
JapaneseDate |
JapaneseChronology.date(Era
Obtains a local date in Japanese calendar system from the era, year-of-era, month-of-year and day-of-month fields.
|
HijrahDate |
HijrahChronology.date(int prolepticYear, int month, int dayOfMonth)
Obtains a local date in Hijrah calendar system from the proleptic-year, month-of-year and day-of-month fields.
|
ThaiBuddhistDate |
ThaiBuddhistChronology.date(int prolepticYear, int month, int dayOfMonth)
Obtains a local date in Thai Buddhist calendar system from the proleptic-year, month-of-year and day-of-month fields.
|
LocalDate |
IsoChronology.date(int prolepticYear, int month, int dayOfMonth)
Obtains an ISO local date from the proleptic-year, month-of-year and day-of-month fields.
|
MinguoDate |
MinguoChronology.date(int prolepticYear, int month, int dayOfMonth)
Obtains a local date in Minguo calendar system from the proleptic-year, month-of-year and day-of-month fields.
|
JapaneseDate |
JapaneseChronology.date(int prolepticYear, int month, int dayOfMonth)
Obtains a local date in Japanese calendar system from the proleptic-year, month-of-year and day-of-month fields.
|
HijrahDate |
HijrahChronology.date(TemporalAccessor
|
ThaiBuddhistDate |
ThaiBuddhistChronology.date(TemporalAccessor
|
LocalDate |
IsoChronology.date(TemporalAccessor
Obtains an ISO local date from another date-time object.
|
MinguoDate |
MinguoChronology.date(TemporalAccessor
|
JapaneseDate |
JapaneseChronology.date(TemporalAccessor
|
HijrahDate |
HijrahChronology.dateEpochDay(long epochDay)
Obtains a local date in the Hijrah calendar system from the epoch-day.
|
ThaiBuddhistDate |
ThaiBuddhistChronology.dateEpochDay(long epochDay)
Obtains a local date in the Thai Buddhist calendar system from the epoch-day.
|
LocalDate |
IsoChronology.dateEpochDay(long epochDay)
Obtains an ISO local date from the epoch-day.
|
MinguoDate |
MinguoChronology.dateEpochDay(long epochDay)
Obtains a local date in the Minguo calendar system from the epoch-day.
|
JapaneseDate |
JapaneseChronology.dateEpochDay(long epochDay)
Obtains a local date in the Japanese calendar system from the epoch-day.
|
HijrahDate |
HijrahChronology.dateNow()
|
ThaiBuddhistDate |
ThaiBuddhistChronology.dateNow()
|
LocalDate |
IsoChronology.dateNow()
Obtains the current ISO local date from the system clock in the default time-zone.
|
MinguoDate |
MinguoChronology.dateNow()
|
JapaneseDate |
JapaneseChronology.dateNow()
|
HijrahDate |
HijrahChronology.dateNow(Clock
|
ThaiBuddhistDate |
ThaiBuddhistChronology.dateNow(Clock
|
LocalDate |
IsoChronology.dateNow(Clock
Obtains the current ISO local date from the specified clock.
|
MinguoDate |
MinguoChronology.dateNow(Clock
|
JapaneseDate |
JapaneseChronology.dateNow(Clock
|
HijrahDate |
HijrahChronology.dateNow(ZoneId
|
ThaiBuddhistDate |
ThaiBuddhistChronology.dateNow(ZoneId
|
LocalDate |
IsoChronology.dateNow(ZoneId
Obtains the current ISO local date from the system clock in the specified time-zone.
|
MinguoDate |
MinguoChronology.dateNow(ZoneId
|
JapaneseDate |
JapaneseChronology.dateNow(ZoneId
|
HijrahDate |
HijrahChronology.dateYearDay(Era
Obtains a local date in Hijrah calendar system from the era, year-of-era and day-of-year fields.
|
ThaiBuddhistDate |
ThaiBuddhistChronology.dateYearDay(Era
Obtains a local date in Thai Buddhist calendar system from the era, year-of-era and day-of-year fields.
|
LocalDate |
IsoChronology.dateYearDay(Era
Obtains an ISO local date from the era, year-of-era and day-of-year fields.
|
MinguoDate |
MinguoChronology.dateYearDay(Era
Obtains a local date in Minguo calendar system from the era, year-of-era and day-of-year fields.
|
JapaneseDate |
JapaneseChronology.dateYearDay(Era
Obtains a local date in Japanese calendar system from the era, year-of-era and day-of-year fields.
|
HijrahDate |
HijrahChronology.dateYearDay(int prolepticYear, int dayOfYear)
Obtains a local date in Hijrah calendar system from the proleptic-year and day-of-year fields.
|
ThaiBuddhistDate |
ThaiBuddhistChronology.dateYearDay(int prolepticYear, int dayOfYear)
Obtains a local date in Thai Buddhist calendar system from the proleptic-year and day-of-year fields.
|
LocalDate |
IsoChronology.dateYearDay(int prolepticYear, int dayOfYear)
Obtains an ISO local date from the proleptic-year and day-of-year fields.
|
MinguoDate |
MinguoChronology.dateYearDay(int prolepticYear, int dayOfYear)
Obtains a local date in Minguo calendar system from the proleptic-year and day-of-year fields.
|
JapaneseDate |
JapaneseChronology.dateYearDay(int prolepticYear, int dayOfYear)
Obtains a local date in Japanese calendar system from the proleptic-year and day-of-year fields.
|
boolean |
JapaneseDate.equals(Object
Compares this date to another date, including the chronology.
|
boolean |
ChronoPeriod.equals(Object
Checks if this period is equal to another period, including the chronology.
|
boolean |
ChronoLocalDate.equals(Object
Checks if this date is equal to another date, including the chronology.
|
boolean |
Chronology.equals(Object
Checks if this chronology is equal to another chronology.
|
boolean |
ChronoLocalDateTime.equals(Object
Checks if this date-time is equal to another date-time, including the chronology.
|
boolean |
HijrahDate.equals(Object
Compares this date to another date, including the chronology.
|
boolean |
ThaiBuddhistDate.equals(Object
Compares this date to another date, including the chronology.
|
boolean |
ChronoZonedDateTime.equals(Object
Checks if this date-time is equal to another date-time.
|
boolean |
AbstractChronology.equals(Object
Checks if this chronology is equal to another chronology.
|
boolean |
MinguoDate.equals(Object
Compares this date to another date, including the chronology.
|
HijrahEra |
HijrahChronology.eraOf(int eraValue)
|
ThaiBuddhistEra |
ThaiBuddhistChronology.eraOf(int eraValue)
|
IsoEra |
IsoChronology.eraOf(int eraValue)
|
MinguoEra |
MinguoChronology.eraOf(int eraValue)
|
JapaneseEra |
JapaneseChronology.eraOf(int eraValue)
Returns the calendar system era object from the given numeric value.
|
List |
HijrahChronology.eras()
|
List |
ThaiBuddhistChronology.eras()
|
List |
IsoChronology.eras()
|
List |
MinguoChronology.eras()
|
List |
JapaneseChronology.eras()
|
default int |
ChronoZonedDateTime.get(TemporalField
|
default int |
Era.get(TemporalField
Gets the value of the specified field from this era as an
int.
|
long |
ChronoPeriod.get(TemporalUnit
Gets the value of the requested unit.
|
String |
HijrahChronology.getCalendarType()
Gets the calendar type of the Islamic calendar.
|
String |
ThaiBuddhistChronology.getCalendarType()
Gets the calendar type of the underlying calendar system - 'buddhist'.
|
String |
IsoChronology.getCalendarType()
Gets the calendar type of the underlying calendar system - 'iso8601'.
|
String |
MinguoChronology.getCalendarType()
Gets the calendar type of the underlying calendar system - 'roc'.
|
String |
JapaneseChronology.getCalendarType()
Gets the calendar type of the underlying calendar system - 'japanese'.
|
JapaneseChronology |
JapaneseDate.getChronology()
Gets the chronology of this date, which is the Japanese calendar system.
|
HijrahChronology |
HijrahDate.getChronology()
Gets the chronology of this date, which is the Hijrah calendar system.
|
ThaiBuddhistChronology |
ThaiBuddhistDate.getChronology()
Gets the chronology of this date, which is the Thai Buddhist calendar system.
|
MinguoChronology |
MinguoDate.getChronology()
Gets the chronology of this date, which is the Minguo calendar system.
|
JapaneseEra |
JapaneseDate.getEra()
Gets the era applicable at this date.
|
HijrahEra |
HijrahDate.getEra()
Gets the era applicable at this date.
|
ThaiBuddhistEra |
ThaiBuddhistDate.getEra()
Gets the era applicable at this date.
|
MinguoEra |
MinguoDate.getEra()
Gets the era applicable at this date.
|
String |
HijrahChronology.getId()
Gets the ID of the chronology.
|
String |
ThaiBuddhistChronology.getId()
Gets the ID of the chronology - 'ThaiBuddhist'.
|
String |
IsoChronology.getId()
Gets the ID of the chronology - 'ISO'.
|
String |
MinguoChronology.getId()
Gets the ID of the chronology - 'Minguo'.
|
String |
JapaneseChronology.getId()
Gets the ID of the chronology - 'Japanese'.
|
long |
JapaneseDate.getLong(TemporalField
|
long |
HijrahDate.getLong(TemporalField
|
long |
ThaiBuddhistDate.getLong(TemporalField
|
default long |
ChronoZonedDateTime.getLong(TemporalField
|
default long |
Era.getLong(TemporalField
Gets the value of the specified field from this era as a
long.
|
long |
MinguoDate.getLong(TemporalField
|
List |
ChronoPeriod.getUnits()
Gets the set of units supported by this period.
|
int |
HijrahEra.getValue()
Gets the numeric era
int value.
|
int |
JapaneseEra.getValue()
Gets the numeric era
int value.
|
int |
MinguoEra.getValue()
Gets the numeric era
int value.
|
int |
ThaiBuddhistEra.getValue()
Gets the numeric era
int value.
|
int |
IsoEra.getValue()
Gets the numeric era
int value.
|
int |
JapaneseDate.hashCode()
A hash code for this date.
|
int |
ChronoPeriod.hashCode()
A hash code for this period.
|
int |
ChronoLocalDate.hashCode()
A hash code for this date.
|
int |
Chronology.hashCode()
A hash code for this chronology.
|
int |
ChronoLocalDateTime.hashCode()
A hash code for this date-time.
|
int |
HijrahDate.hashCode()
A hash code for this date.
|
int |
ThaiBuddhistDate.hashCode()
A hash code for this date.
|
int |
ChronoZonedDateTime.hashCode()
A hash code for this date-time.
|
int |
AbstractChronology.hashCode()
A hash code for this chronology.
|
int |
MinguoDate.hashCode()
A hash code for this date.
|
boolean |
HijrahDate.isLeapYear()
Checks if the year is a leap year, according to the Hijrah calendar system rules.
|
boolean |
HijrahChronology.isLeapYear(long prolepticYear)
|
boolean |
ThaiBuddhistChronology.isLeapYear(long prolepticYear)
Checks if the specified year is a leap year.
|
boolean |
IsoChronology.isLeapYear(long prolepticYear)
Checks if the year is a leap year, according to the ISO proleptic calendar system rules.
|
boolean |
MinguoChronology.isLeapYear(long prolepticYear)
Checks if the specified year is a leap year.
|
boolean |
JapaneseChronology.isLeapYear(long prolepticYear)
Checks if the specified year is a leap year.
|
boolean |
JapaneseDate.isSupported(TemporalField
Checks if the specified field is supported.
|
default boolean |
ChronoLocalDate.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
ChronoLocalDateTime.isSupported(TemporalField
Checks if the specified field is supported.
|
boolean |
ChronoZonedDateTime.isSupported(TemporalField
Checks if the specified field is supported.
|
default boolean |
Era.isSupported(TemporalField
Checks if the specified field is supported.
|
default boolean |
ChronoLocalDate.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
default boolean |
ChronoLocalDateTime.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
default boolean |
ChronoZonedDateTime.isSupported(TemporalUnit
Checks if the specified unit is supported.
|
int |
JapaneseDate.lengthOfMonth()
Returns the length of the month represented by this date.
|
int |
HijrahDate.lengthOfMonth()
Returns the length of the month represented by this date.
|
int |
ThaiBuddhistDate.lengthOfMonth()
Returns the length of the month represented by this date.
|
int |
MinguoDate.lengthOfMonth()
Returns the length of the month represented by this date.
|
int |
JapaneseDate.lengthOfYear()
|
int |
HijrahDate.lengthOfYear()
Returns the length of the year represented by this date.
|
ChronoLocalDateTime |
HijrahChronology.localDateTime(TemporalAccessor
|
ChronoLocalDateTime |
ThaiBuddhistChronology.localDateTime(TemporalAccessor
|
LocalDateTime |
IsoChronology.localDateTime(TemporalAccessor
Obtains an ISO local date-time from another date-time object.
|
ChronoLocalDateTime |
MinguoChronology.localDateTime(TemporalAccessor
|
ChronoLocalDateTime |
JapaneseChronology.localDateTime(TemporalAccessor
|
JapaneseDate |
JapaneseDate.minus(long amountToAdd, TemporalUnit
|
default ChronoLocalDate |
ChronoLocalDate.minus(long amountToSubtract, TemporalUnit
Returns an object of the same type as this object with the specified period subtracted.
|
default ChronoLocalDateTime |
ChronoLocalDateTime.minus(long amountToSubtract, TemporalUnit
Returns an object of the same type as this object with the specified period subtracted.
|
HijrahDate |
HijrahDate.minus(long amountToSubtract, TemporalUnit
|
ThaiBuddhistDate |
ThaiBuddhistDate.minus(long amountToAdd, TemporalUnit
|
default ChronoZonedDateTime |
ChronoZonedDateTime.minus(long amountToSubtract, TemporalUnit
Returns an object of the same type as this object with the specified period subtracted.
|
MinguoDate |
MinguoDate.minus(long amountToAdd, TemporalUnit
|
JapaneseDate |
JapaneseDate.minus(TemporalAmount
Returns an object of the same type as this object with an amount subtracted.
|
default ChronoLocalDate |
ChronoLocalDate.minus(TemporalAmount
Returns an object of the same type as this object with an amount subtracted.
|
default ChronoLocalDateTime |
ChronoLocalDateTime.minus(TemporalAmount
Returns an object of the same type as this object with an amount subtracted.
|
HijrahDate |
HijrahDate.minus(TemporalAmount
Returns an object of the same type as this object with an amount subtracted.
|
ThaiBuddhistDate |
ThaiBuddhistDate.minus(TemporalAmount
Returns an object of the same type as this object with an amount subtracted.
|
default ChronoZonedDateTime |
ChronoZonedDateTime.minus(TemporalAmount
Returns an object of the same type as this object with an amount subtracted.
|
MinguoDate |
MinguoDate.minus(TemporalAmount
Returns an object of the same type as this object with an amount subtracted.
|
Period |
IsoChronology.period(int years, int months, int days)
Obtains a period for this chronology based on years, months and days.
|
JapaneseDate |
JapaneseDate.plus(long amountToAdd, TemporalUnit
|
default ChronoLocalDate |
ChronoLocalDate.plus(long amountToAdd, TemporalUnit
Returns an object of the same type as this object with the specified period added.
|
ChronoLocalDateTime |
ChronoLocalDateTime.plus(long amountToAdd, TemporalUnit
Returns an object of the same type as this object with the specified period added.
|
HijrahDate |
HijrahDate.plus(long amountToAdd, TemporalUnit
|
ThaiBuddhistDate |
ThaiBuddhistDate.plus(long amountToAdd, TemporalUnit
|
ChronoZonedDateTime |
ChronoZonedDateTime.plus(long amountToAdd, TemporalUnit
Returns an object of the same type as this object with the specified period added.
|
MinguoDate |
MinguoDate.plus(long amountToAdd, TemporalUnit
|
JapaneseDate |
JapaneseDate.plus(TemporalAmount
Returns an object of the same type as this object with an amount added.
|
default ChronoLocalDate |
ChronoLocalDate.plus(TemporalAmount
Returns an object of the same type as this object with an amount added.
|
default ChronoLocalDateTime |
ChronoLocalDateTime.plus(TemporalAmount
Returns an object of the same type as this object with an amount added.
|
HijrahDate |
HijrahDate.plus(TemporalAmount
Returns an object of the same type as this object with an amount added.
|
ThaiBuddhistDate |
ThaiBuddhistDate.plus(TemporalAmount
Returns an object of the same type as this object with an amount added.
|
default ChronoZonedDateTime |
ChronoZonedDateTime.plus(TemporalAmount
Returns an object of the same type as this object with an amount added.
|
MinguoDate |
MinguoDate.plus(TemporalAmount
Returns an object of the same type as this object with an amount added.
|
int |
HijrahChronology.prolepticYear(Era
|
int |
ThaiBuddhistChronology.prolepticYear(Era
|
int |
IsoChronology.prolepticYear(Era
|
int |
MinguoChronology.prolepticYear(Era
|
int |
JapaneseChronology.prolepticYear(Era
|
default <R> R |
ChronoLocalDate.query(TemporalQuery
Queries this date using the specified query.
|
default <R> R |
ChronoLocalDateTime.query(TemporalQuery
Queries this date-time using the specified query.
|
default <R> R |
ChronoZonedDateTime.query(TemporalQuery
Queries this date-time using the specified query.
|
default <R> R |
Era.query(TemporalQuery
Queries this era using the specified query.
|
ValueRange |
HijrahChronology.range(ChronoField
|
ValueRange |
ThaiBuddhistChronology.range(ChronoField
|
ValueRange |
IsoChronology.range(ChronoField
|
ValueRange |
MinguoChronology.range(ChronoField
|
ValueRange |
JapaneseChronology.range(ChronoField
|
ValueRange |
JapaneseDate.range(TemporalField
|
ValueRange |
HijrahEra.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
JapaneseEra.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
HijrahDate.range(TemporalField
|
ValueRange |
ThaiBuddhistDate.range(TemporalField
|
default ValueRange |
ChronoZonedDateTime.range(TemporalField
|
default ValueRange |
Era.range(TemporalField
Gets the range of valid values for the specified field.
|
ValueRange |
MinguoDate.range(TemporalField
|
HijrahDate |
HijrahChronology.resolveDate(Map
|
ThaiBuddhistDate |
ThaiBuddhistChronology.resolveDate(Map
|
LocalDate |
IsoChronology.resolveDate(Map
Resolves parsed
ChronoField values into a date during parsing.
|
MinguoDate |
MinguoChronology.resolveDate(Map
|
JapaneseDate |
JapaneseChronology.resolveDate(Map
|
ChronoLocalDate |
AbstractChronology.resolveDate(Map
Resolves parsed
ChronoField values into a date during parsing.
|
Temporal |
ChronoPeriod.subtractFrom(Temporal
Subtracts this period from the specified temporal object.
|
long |
JapaneseDate.toEpochDay()
|
long |
HijrahDate.toEpochDay()
|
long |
ThaiBuddhistDate.toEpochDay()
|
long |
MinguoDate.toEpochDay()
|
String |
ChronoPeriod.toString()
Outputs this period as a
String.
|
String |
JapaneseEra.toString()
|
String |
ChronoLocalDate.toString()
Outputs this date as a
String.
|
String |
Chronology.toString()
Outputs this chronology as a
String.
|
String |
ChronoLocalDateTime.toString()
Outputs this date-time as a
String.
|
String |
ChronoZonedDateTime.toString()
Outputs this date-time as a
String.
|
String |
AbstractChronology.toString()
Outputs this chronology as a
String, using the chronology ID.
|
ChronoPeriod |
JapaneseDate.until(ChronoLocalDate
|
ChronoPeriod |
HijrahDate.until(ChronoLocalDate
|
ChronoPeriod |
ThaiBuddhistDate.until(ChronoLocalDate
|
ChronoPeriod |
MinguoDate.until(ChronoLocalDate
|
long |
ChronoLocalDate.until(Temporal
Calculates the amount of time until another date in terms of the specified unit.
|
JapaneseDate |
JapaneseDate.with(TemporalAdjuster
Returns an adjusted object of the same type as this object with the adjustment made.
|
default ChronoLocalDate |
ChronoLocalDate.with(TemporalAdjuster
Returns an adjusted object of the same type as this object with the adjustment made.
|
default ChronoLocalDateTime |
ChronoLocalDateTime.with(TemporalAdjuster
Returns an adjusted object of the same type as this object with the adjustment made.
|
HijrahDate |
HijrahDate.with(TemporalAdjuster
Returns an adjusted object of the same type as this object with the adjustment made.
|
ThaiBuddhistDate |
ThaiBuddhistDate.with(TemporalAdjuster
Returns an adjusted object of the same type as this object with the adjustment made.
|
default ChronoZonedDateTime |
ChronoZonedDateTime.with(TemporalAdjuster
Returns an adjusted object of the same type as this object with the adjustment made.
|
MinguoDate |
MinguoDate.with(TemporalAdjuster
Returns an adjusted object of the same type as this object with the adjustment made.
|
JapaneseDate |
JapaneseDate.with(TemporalField
|
default ChronoLocalDate |
ChronoLocalDate.with(TemporalField
Returns an object of the same type as this object with the specified field altered.
|
ChronoLocalDateTime |
ChronoLocalDateTime.with(TemporalField
Returns an object of the same type as this object with the specified field altered.
|
HijrahDate |
HijrahDate.with(TemporalField
|
ThaiBuddhistDate |
ThaiBuddhistDate.with(TemporalField
|
ChronoZonedDateTime |
ChronoZonedDateTime.with(TemporalField
Returns an object of the same type as this object with the specified field altered.
|
MinguoDate |
MinguoDate.with(TemporalField
|
ChronoZonedDateTime |
HijrahChronology.zonedDateTime(Instant
|
ChronoZonedDateTime |
ThaiBuddhistChronology.zonedDateTime(Instant
|
ZonedDateTime |
IsoChronology.zonedDateTime(Instant
Obtains an ISO zoned date-time in this chronology from an
Instant.
|
ChronoZonedDateTime |
MinguoChronology.zonedDateTime(Instant
|
ChronoZonedDateTime |
JapaneseChronology.zonedDateTime(Instant
|
ChronoZonedDateTime |
HijrahChronology.zonedDateTime(TemporalAccessor
|
ChronoZonedDateTime |
ThaiBuddhistChronology.zonedDateTime(TemporalAccessor
|
ZonedDateTime |
IsoChronology.zonedDateTime(TemporalAccessor
Obtains an ISO zoned date-time from another date-time object.
|
ChronoZonedDateTime |
MinguoChronology.zonedDateTime(TemporalAccessor
|
ChronoZonedDateTime |
JapaneseChronology.zonedDateTime(TemporalAccessor
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
DecimalStyle.equals(Object
Checks if this DecimalStyle is equal another DecimalStyle.
|
int |
DecimalStyle.hashCode()
A hash code for this DecimalStyle.
|
String |
DateTimeFormatter.toString()
Returns a description of the underlying formatters.
|
String |
DecimalStyle.toString()
Returns a string describing this DecimalStyle.
|
| Modifier and Type | Method and Description |
|---|---|
<R extends Temporal |
ChronoUnit.addTo(R temporal, long amount)
|
<R extends Temporal |
ChronoField.adjustInto(R temporal, long newValue)
|
long |
ChronoUnit.between(Temporal
|
boolean |
WeekFields.equals(Object
Checks if this
WeekFields is equal to the specified object.
|
boolean |
ValueRange.equals(Object
Checks if this range is equal to another range.
|
TemporalUnit |
ChronoField.getBaseUnit()
|
String |
ChronoField.getDisplayName(Locale
|
Duration |
ChronoUnit.getDuration()
Gets the estimated duration of this unit in the ISO calendar system.
|
long |
ChronoField.getFrom(TemporalAccessor
|
TemporalUnit |
ChronoField.getRangeUnit()
|
int |
WeekFields.hashCode()
A hash code for this
WeekFields.
|
int |
ValueRange.hashCode()
A hash code for this range.
|
boolean |
ChronoUnit.isDateBased()
Checks if this unit is a date unit.
|
boolean |
ChronoField.isDateBased()
Checks if this field represents a component of a date.
|
boolean |
ChronoUnit.isDurationEstimated()
Checks if the duration of the unit is an estimate.
|
boolean |
ChronoUnit.isSupportedBy(Temporal
|
boolean |
ChronoField.isSupportedBy(TemporalAccessor
|
boolean |
ChronoUnit.isTimeBased()
Checks if this unit is a time unit.
|
boolean |
ChronoField.isTimeBased()
Checks if this field represents a component of a time.
|
ValueRange |
ChronoField.range()
Gets the range of valid values for the field.
|
ValueRange |
ChronoField.rangeRefinedBy(TemporalAccessor
|
String |
WeekFields.toString()
A string representation of this
WeekFields instance.
|
String |
ChronoUnit.toString()
|
String |
ValueRange.toString()
Outputs this range as a
String.
|
String |
ChronoField.toString()
|
String |
TemporalField.toString()
Gets a descriptive name for the field.
|
String |
TemporalUnit.toString()
Gets a descriptive name for the unit.
|
| Modifier and Type | Method and Description |
|---|---|
int |
ZoneOffsetTransition.compareTo(ZoneOffsetTransition
Compares this transition to another based on the transition instant.
|
boolean |
ZoneRules.equals(Object
Checks if this set of rules equals another.
|
boolean |
ZoneOffsetTransition.equals(Object
Checks if this object equals another.
|
boolean |
ZoneOffsetTransitionRule.equals(Object
Checks if this object equals another.
|
int |
ZoneRules.hashCode()
Returns a suitable hash code given the definition of
#equals.
|
int |
ZoneOffsetTransition.hashCode()
Returns a suitable hash code.
|
int |
ZoneOffsetTransitionRule.hashCode()
Returns a suitable hash code.
|
String |
ZoneRules.toString()
Returns a string describing this object.
|
String |
ZoneOffsetTransition.toString()
Returns a string describing this object.
|
String |
ZoneOffsetTransitionRule.toString()
Returns a string describing this object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DoubleSummaryStatistics.accept(double value)
Records another value into the summary information.
|
void |
IntSummaryStatistics.accept(int value)
Records a new value into the summary information
|
void |
LongSummaryStatistics.accept(int value)
Records a new
int value into the summary information.
|
void |
LongSummaryStatistics.accept(long value)
Records a new
long value into the summary information.
|
void |
GregorianCalendar.add(int field, int amount)
Adds the specified (signed) amount of time to the given calendar field, based on the calendar's rules.
|
int |
Spliterators.AbstractSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
|
int |
Spliterators.AbstractIntSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
|
int |
Spliterators.AbstractLongSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
|
int |
Spliterators.AbstractDoubleSpliterator.characteristics()
Returns a set of characteristics of this Spliterator and its elements.
|
Object |
Locale.clone()
Overrides Cloneable.
|
Object |
HashMap.clone()
Returns a shallow copy of this
HashMap instance: the keys and values themselves are not cloned.
|
Object |
Calendar.clone()
Creates and returns a copy of this object.
|
Object |
GregorianCalendar.clone()
|
int |
Calendar.compareTo(Calendar
Compares the time values (millisecond offsets from the
Epoch) represented by two
Calendar objects.
|
V |
HashMap.compute(K key, BiFunction
|
V |
Hashtable.compute(K key, BiFunction
|
protected void |
GregorianCalendar.computeFields()
Converts the time value (millisecond offset from the
Epoch) to calendar field values.
|
V |
HashMap.computeIfAbsent(K key, Function
|
V |
Hashtable.computeIfAbsent(K key, Function
|
V |
Hashtable.computeIfPresent(K key, BiFunction
|
protected void |
GregorianCalendar.computeTime()
Converts calendar field values to the time value (millisecond offset from the
Epoch).
|
boolean |
Locale.equals(Object
Returns true if this Locale is equal to another object.
|
boolean |
Locale.LanguageRange.equals(Object
Compares this object to the specified object.
|
boolean |
Optional.equals(Object
Indicates whether some other object is "equal to" this Optional.
|
boolean |
OptionalDouble.equals(Object
Indicates whether some other object is "equal to" this OptionalDouble.
|
boolean |
OptionalInt.equals(Object
Indicates whether some other object is "equal to" this OptionalInt.
|
boolean |
Calendar.equals(Object
Compares this
Calendar to the specified
Object.
|
boolean |
OptionalLong.equals(Object
Indicates whether some other object is "equal to" this OptionalLong.
|
boolean |
GregorianCalendar.equals(Object
Compares this
GregorianCalendar to the specified
Object.
|
long |
Spliterators.AbstractSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a
Spliterator traversal, or returns
Long if infinite, unknown, or too expensive to compute.
|
long |
Spliterators.AbstractIntSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a
Spliterator traversal, or returns
Long if infinite, unknown, or too expensive to compute.
|
long |
Spliterators.AbstractLongSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a
Spliterator traversal, or returns
Long if infinite, unknown, or too expensive to compute.
|
long |
Spliterators.AbstractDoubleSpliterator.estimateSize()
Returns an estimate of the number of elements that would be encountered by a
Spliterator traversal, or returns
Long if infinite, unknown, or too expensive to compute.
|
void |
HashMap.forEach(BiConsumer
|
void |
Hashtable.forEach(BiConsumer
|
void |
WeakHashMap.forEach(BiConsumer
|
void |
IdentityHashMap.forEach(BiConsumer
|
void |
TreeMap.forEach(BiConsumer
|
void |
Vector.forEach(Consumer
|
void |
ArrayList.forEach(Consumer
|
default void |
Spliterator.OfDouble.forEachRemaining(Consumer
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
|
default void |
PrimitiveIterator.OfDouble.forEachRemaining(Consumer
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
|
default void |
Spliterator.OfInt.forEachRemaining(Consumer
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
|
default void |
PrimitiveIterator.OfInt.forEachRemaining(Consumer
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
|
default void |
Spliterator.OfLong.forEachRemaining(Consumer
Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception.
|
default void |
PrimitiveIterator.OfLong.forEachRemaining(Consumer
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.
|
default void |
Spliterator.OfDouble.forEachRemaining(DoubleConsumer
|
default void |
Spliterator.OfInt.forEachRemaining(IntConsumer
|
default void |
Spliterator.OfLong.forEachRemaining(LongConsumer
|
int |
GregorianCalendar.getActualMaximum(int field)
Returns the maximum value that this calendar field could have, taking into consideration the given time value and the current values of the
getFirstDayOfWeek,
getMinimalDaysInFirstWeek,
getGregorianChange and
getTimeZone methods.
|
int |
GregorianCalendar.getActualMinimum(int field)
Returns the minimum value that this calendar field could have, taking into consideration the given time value and the current values of the
getFirstDayOfWeek,
getMinimalDaysInFirstWeek,
getGregorianChange and
getTimeZone methods.
|
String |
GregorianCalendar.getCalendarType()
Returns
"gregory" as the calendar type.
|
int |
GregorianCalendar.getGreatestMinimum(int field)
Returns the highest minimum value for the given calendar field of this
GregorianCalendar instance.
|
int |
GregorianCalendar.getLeastMaximum(int field)
Returns the lowest maximum value for the given calendar field of this
GregorianCalendar instance.
|
int |
GregorianCalendar.getMaximum(int field)
Returns the maximum value for the given calendar field of this
GregorianCalendar instance.
|
int |
GregorianCalendar.getMinimum(int field)
Returns the minimum value for the given calendar field of this
GregorianCalendar instance.
|
V |
HashMap.getOrDefault(Object
|
V |
Hashtable.getOrDefault(Object
|
TimeZone |
GregorianCalendar.getTimeZone()
|
int |
GregorianCalendar.getWeeksInWeekYear()
Returns the number of weeks in the
week year represented by this
GregorianCalendar.
|
int |
GregorianCalendar.getWeekYear()
Returns the
week year represented by this
GregorianCalendar.
|
int |
Locale.hashCode()
Override hashCode.
|
int |
Locale.LanguageRange.hashCode()
Returns a hash code value for the object.
|
int |
Optional.hashCode()
Returns the hash code value of the present value, if any, or 0 (zero) if no value is present.
|
int |
OptionalDouble.hashCode()
Returns the hash code value of the present value, if any, or 0 (zero) if no value is present.
|
int |
OptionalInt.hashCode()
Returns the hash code value of the present value, if any, or 0 (zero) if no value is present.
|
int |
Calendar.hashCode()
Returns a hash code for this calendar.
|
int |
OptionalLong.hashCode()
Returns the hash code value of the present value, if any, or 0 (zero) if no value is present.
|
int |
GregorianCalendar.hashCode()
Generates the hash code for this
GregorianCalendar object.
|
boolean |
GregorianCalendar.isWeekDateSupported()
Returns
true indicating this
GregorianCalendar supports week dates.
|
V |
HashMap.merge(K key, V value, BiFunction
|
V |
Hashtable.merge(K key, V value, BiFunction
|
default Integer |
PrimitiveIterator.OfInt.next()
Returns the next element in the iteration.
|
default Long |
PrimitiveIterator.OfLong.next()
Returns the next element in the iteration.
|
default Double |
PrimitiveIterator.OfDouble.next()
Returns the next element in the iteration.
|
boolean |
SimpleTimeZone.observesDaylightTime()
Returns
true if this
SimpleTimeZone observes Daylight Saving Time.
|
V |
HashMap.putIfAbsent(K key, V value)
|
V |
Hashtable.putIfAbsent(K key, V value)
|
boolean |
HashMap.remove(Object
|
boolean |
Hashtable.remove(Object
|
boolean |
Vector.removeIf(Predicate
|
boolean |
ArrayList.removeIf(Predicate
|
V |
HashMap.replace(K key, V value)
|
V |
Hashtable.replace(K key, V value)
|
V |
TreeMap.replace(K key, V value)
|
boolean |
HashMap.replace(K key, V oldValue, V newValue)
|
boolean |
Hashtable.replace(K key, V oldValue, V newValue)
|
boolean |
TreeMap.replace(K key, V oldValue, V newValue)
|
void |
HashMap.replaceAll(BiFunction
|
void |
Hashtable.replaceAll(BiFunction
|
void |
WeakHashMap.replaceAll(BiFunction
|
void |
IdentityHashMap.replaceAll(BiFunction
|
void |
TreeMap.replaceAll(BiFunction
|
void |
Vector.replaceAll(UnaryOperator
|
void |
ArrayList.replaceAll(UnaryOperator
|
void |
GregorianCalendar.roll(int field, boolean up)
Adds or subtracts (up/down) a single unit of time on the given time field without changing larger fields.
|
void |
GregorianCalendar.roll(int field, int amount)
Adds a signed amount to the specified calendar field without changing larger fields.
|
void |
GregorianCalendar.setTimeZone(TimeZone
|
void |
GregorianCalendar.setWeekDate(int weekYear, int weekOfYear, int dayOfWeek)
Sets this
GregorianCalendar to the date given by the date specifiers -
weekYear,
weekOfYear, and
dayOfWeek.
|
void |
Vector.sort(Comparator
|
void |
ArrayList.sort(Comparator
|
Spliterator |
Vector.spliterator()
Creates a
late-binding and
fail-fast
Spliterator over the elements in this list.
|
Spliterator |
LinkedHashSet.spliterator()
Creates a
late-binding and
fail-fast
Spliterator over the elements in this set.
|
default Spliterator |
Collection.spliterator()
Creates a
Spliterator over the elements in this collection.
|
default Spliterator |
Set.spliterator()
Creates a
Spliterator over the elements in this set.
|
default Spliterator |
List.spliterator()
Creates a
Spliterator over the elements in this list.
|
default Spliterator |
SortedSet.spliterator()
Creates a
Spliterator over the elements in this sorted set.
|
Spliterator |
ArrayList.spliterator()
Creates a
late-binding and
fail-fast
Spliterator over the elements in this list.
|
Spliterator |
LinkedList.spliterator()
Creates a
late-binding and
fail-fast
Spliterator over the elements in this list.
|
String |
IntSummaryStatistics.toString()
|
String |
DoubleSummaryStatistics.toString()
Returns a string representation of the object.
|
String |
Currency.toString()
Returns the ISO 4217 currency code of this currency.
|
String |
Locale.toString()
Returns a string representation of this
Locale object, consisting of language, country, variant, script, and extensions as below: language + "_" + country + "_" + (variant + "_#" | "#") + script + "-" + extensions Language is always lower case, country is always upper case, script is always title case, and extensions are always lower case.
|
String |
Optional.toString()
Returns a non-empty string representation of this Optional suitable for debugging.
|
String |
OptionalDouble.toString()
Returns a string representation of the object.
|
String |
OptionalInt.toString()
Returns a string representation of the object.
|
String |
Calendar.toString()
Return a string representation of this calendar.
|
String |
OptionalLong.toString()
Returns a string representation of the object.
|
String |
StringJoiner.toString()
Returns the current value, consisting of the
prefix, the values added so far separated by the
delimiter, and the
suffix, unless no elements have been added in which case, the
prefix + suffix or the
emptyValue characters are returned
|
String |
LongSummaryStatistics.toString()
|
default boolean |
Spliterator.OfDouble.tryAdvance(Consumer
If a remaining element exists, performs the given action on it, returning
true; else returns
false.
|
default boolean |
Spliterator.OfInt.tryAdvance(Consumer
If a remaining element exists, performs the given action on it, returning
true; else returns
false.
|
default boolean |
Spliterator.OfLong.tryAdvance(Consumer
If a remaining element exists, performs the given action on it, returning
true; else returns
false.
|
boolean |
Spliterator.OfDouble.tryAdvance(DoubleConsumer
|
boolean |
Spliterator.OfInt.tryAdvance(IntConsumer
|
boolean |
Spliterator.OfLong.tryAdvance(LongConsumer
|
T_SPLITR |
Spliterator.OfPrimitive.trySplit()
|
Spliterator |
Spliterator.OfInt.trySplit()
|
Spliterator |
Spliterator.OfLong.trySplit()
|
Spliterator |
Spliterator.OfDouble.trySplit()
|
Spliterator |
Spliterators.AbstractSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
|
Spliterator |
Spliterators.AbstractIntSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
|
Spliterator |
Spliterators.AbstractLongSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
|
Spliterator |
Spliterators.AbstractDoubleSpliterator.trySplit()
If this spliterator can be partitioned, returns a Spliterator covering elements, that will, upon return from this method, not be covered by this Spliterator.
|
| Modifier and Type | Method and Description |
|---|---|
default V |
ConcurrentMap.compute(K key, BiFunction
Attempts to compute a mapping for the specified key and its current mapped value (or
null if there is no current mapping).
|
default V |
ConcurrentMap.computeIfAbsent(K key, Function
If the specified key is not already associated with a value (or is mapped to
null), attempts to compute its value using the given mapping function and enters it into this map unless
null.
|
default V |
ConcurrentMap.computeIfPresent(K key, BiFunction
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
|
default void |
ConcurrentMap.forEach(BiConsumer
Performs the given action for each entry in this map until all entries have been processed or the action throws an exception.
|
default V |
ConcurrentMap.getOrDefault(Object
Returns the value to which the specified key is mapped, or
defaultValue if this map contains no mapping for the key.
|
default V |
ConcurrentMap.merge(K key, V value, BiFunction
If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.
|
default void |
ConcurrentMap.replaceAll(BiFunction
Replaces each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.
|
Spliterator |
ConcurrentLinkedQueue.spliterator()
Returns a
Spliterator over the elements in this queue.
|
| Modifier and Type | Method and Description |
|---|---|
Stream |
JarFile.stream()
|
| Modifier and Type | Method and Description |
|---|---|
void |
MemoryHandler.close()
Close the
Handler and free all associated resources.
|
void |
FileHandler.close()
Close all the files.
|
void |
ConsoleHandler.close()
Override
StreamHandler.close to do a flush but not to close the output stream.
|
void |
StreamHandler.close()
Close the current output stream.
|
void |
SocketHandler.close()
Close this output stream.
|
boolean |
Level.equals(Object
Compare two objects for value equality.
|
void |
MemoryHandler.flush()
Causes a flush on the target
Handler.
|
void |
StreamHandler.flush()
Flush any buffered messages.
|
int |
Level.hashCode()
Generate a hashcode.
|
boolean |
MemoryHandler.isLoggable(LogRecord
Check if this
Handler would actually log a given
LogRecord into its internal buffer.
|
boolean |
StreamHandler.isLoggable(LogRecord
Check if this
Handler would actually log a given
LogRecord.
|
void |
MemoryHandler.publish(LogRecord
Store a
LogRecord in an internal buffer.
|
void |
FileHandler.publish(LogRecord
Format and publish a
LogRecord.
|
void |
ConsoleHandler.publish(LogRecord
Publish a
LogRecord.
|
void |
StreamHandler.publish(LogRecord
Format and publish a
LogRecord.
|
void |
SocketHandler.publish(LogRecord
Format and publish a
LogRecord.
|
void |
StreamHandler.setEncoding(String
Set (or change) the character encoding used by this
Handler.
|
String |
Level.toString()
Returns a string representation of this Level.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DoubleStream.Builder.accept(double t)
Adds an element to the stream being built.
|
void |
IntStream.Builder.accept(int t)
Adds an element to the stream being built.
|
void |
LongStream.Builder.accept(long t)
Adds an element to the stream being built.
|
void |
Stream.Builder.accept(T t)
Adds an element to the stream being built.
|
void |
BaseStream.close()
Closes this stream, causing all close handlers for this stream pipeline to be called.
|
PrimitiveIterator |
IntStream.iterator()
|
PrimitiveIterator |
DoubleStream.iterator()
|
PrimitiveIterator |
LongStream.iterator()
|
IntStream |
IntStream.parallel()
|
DoubleStream |
DoubleStream.parallel()
|
LongStream |
LongStream.parallel()
|
IntStream |
IntStream.sequential()
|
DoubleStream |
DoubleStream.sequential()
|
LongStream |
LongStream.sequential()
|
Spliterator |
IntStream.spliterator()
|
Spliterator |
DoubleStream.spliterator()
|
Spliterator |
LongStream.spliterator()
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
Element.equals(Object
Returns
true if the argument represents the same element as
this, or
false otherwise.
|
<A extends Annotation |
Element.getAnnotation(Class
Returns this construct's annotation of the specified type if such an annotation is
present, else
null.
|
List |
Element.getAnnotationMirrors()
Returns the annotations that are
directly present on this construct.
|
List |
TypeElement.getEnclosedElements()
Returns the fields, methods, constructors, and member types that are directly declared in this class or interface.
|
List |
PackageElement.getEnclosedElements()
Returns the
top-level classes and interfaces within this package.
|
Element |
VariableElement.getEnclosingElement()
Returns the enclosing element of this variable.
|
Element |
TypeElement.getEnclosingElement()
Returns the package of a top-level type and returns the immediately lexically enclosing element for a
nested type.
|
Element |
PackageElement.getEnclosingElement()
Returns
null since a package is not enclosed by another element.
|
Element |
TypeParameterElement.getEnclosingElement()
Returns the
generic element of this type parameter.
|
Name |
VariableElement.getSimpleName()
Returns the simple name of this variable element.
|
Name |
TypeElement.getSimpleName()
Returns the simple name of this type element.
|
Name |
ExecutableElement.getSimpleName()
Returns the simple name of a constructor, method, or initializer.
|
Name |
PackageElement.getSimpleName()
Returns the simple name of this package.
|
int |
Element.hashCode()
Obeys the general contract of
Object.hashCode.
|
| Modifier and Type | Method and Description |
|---|---|
R |
ElementKindVisitor6.visitExecutable(ExecutableElement
Visits an executable element, dispatching to the visit method for the specific
kind of executable,
CONSTRUCTOR,
INSTANCE_INIT,
METHOD, or
STATIC_INIT.
|
R |
TypeKindVisitor8.visitIntersection(IntersectionType
This implementation visits an
IntersectionType by calling
defaultAction.
|
R |
SimpleTypeVisitor8.visitIntersection(IntersectionType
This implementation visits an
IntersectionType by calling
defaultAction.
|
R |
TypeKindVisitor6.visitNoType(NoType
|
R |
ElementKindVisitor6.visitPackage(PackageElement
Visits a package element.
|
R |
TypeKindVisitor6.visitPrimitive(PrimitiveType
Visits a primitive type, dispatching to the visit method for the specific
kind of primitive type:
BOOLEAN,
BYTE, etc.
|
R |
ElementKindVisitor6.visitType(TypeElement
Visits a type element, dispatching to the visit method for the specific
kind of type,
ANNOTATION_TYPE,
CLASS,
ENUM, or
INTERFACE.
|
R |
ElementKindVisitor6.visitTypeParameter(TypeParameterElement
Visits a type parameter element.
|
R |
TypeKindVisitor7.visitUnion(UnionType
This implementation visits a
UnionType by calling
defaultAction.
|
R |
SimpleTypeVisitor7.visitUnion(UnionType
This implementation visits a
UnionType by calling
defaultAction.
|
R |
ElementScanner7.visitVariable(VariableElement
This implementation scans the enclosed elements.
|
R |
ElementKindVisitor6.visitVariable(VariableElement
Visits a variable element, dispatching to the visit method for the specific
kind of variable,
ENUM_CONSTANT,
EXCEPTION_PARAMETER,
FIELD,
LOCAL_VARIABLE,
PARAMETER, or
RESOURCE_VARIABLE.
|
R |
SimpleElementVisitor7.visitVariable(VariableElement
This implementation calls
defaultAction.
|
R |
ElementKindVisitor7.visitVariableAsResourceVariable(VariableElement
Visits a
RESOURCE_VARIABLE variable element by calling
defaultAction.
|
| Modifier and Type | Method and Description |
|---|---|
void |
AttributeList.add(int index, Object
Inserts the specified element at the specified position in this list.
|
boolean |
AttributeList.add(Object
Appends the specified element to the end of this list.
|
boolean |
AttributeList.addAll(Collection
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator.
|
boolean |
AttributeList.addAll(int index, Collection
Inserts all of the elements in the specified collection into this list, starting at the specified position.
|
ValueExp |
AttributeValueExp.apply(ObjectName
Applies the
AttributeValueExp on an MBean.
|
Object |
MBeanInfo.clone()
Returns a shallow clone of this instance.
|
Object |
MBeanOperationInfo.clone()
Returns a shallow clone of this instance.
|
Descriptor |
ImmutableDescriptor.clone()
Returns a descriptor which is equal to this descriptor.
|
boolean |
ObjectName.equals(Object
Compares the current object name with another object name.
|
boolean |
MBeanInfo.equals(Object
Compare this MBeanInfo to another.
|
boolean |
MBeanOperationInfo.equals(Object
Compare this MBeanOperationInfo to another.
|
boolean |
ImmutableDescriptor.equals(Object
Compares this descriptor to the given object.
|
int |
ObjectName.hashCode()
Returns a hash code for this object name.
|
int |
MBeanInfo.hashCode()
|
int |
MBeanOperationInfo.hashCode()
|
int |
ImmutableDescriptor.hashCode()
Returns the hash code value for this descriptor.
|
Object |
AttributeList.set(int index, Object
Replaces the element at the specified position in this list with the specified element.
|
void |
AttributeValueExp.setMBeanServer(MBeanServer
Deprecated.
This method has no effect. The MBean Server used to obtain an attribute value is
QueryEval.
|
String |
ObjectName.toString()
Returns a string representation of the object name.
|
String |
MBeanInfo.toString()
|
String |
Notification.toString()
Returns a String representation of this notification.
|
String |
MBeanOperationInfo.toString()
|
String |
AttributeValueExp.toString()
Returns the string representing its value.
|
String |
MBeanServerNotification.toString()
|
String |
ImmutableDescriptor.toString()
|
| Modifier and Type | Method and Description |
|---|---|
Object |
DescriptorSupport.clone()
Returns a new Descriptor which is a duplicate of the Descriptor.
|
Object |
ModelMBeanConstructorInfo.clone()
Creates and returns a new ModelMBeanConstructorInfo which is a duplicate of this ModelMBeanConstructorInfo.
|
Object |
ModelMBeanAttributeInfo.clone()
Creates and returns a new ModelMBeanAttributeInfo which is a duplicate of this ModelMBeanAttributeInfo.
|
boolean |
DescriptorSupport.equals(Object
Compares this descriptor to the given object.
|
Descriptor |
ModelMBeanInfoSupport.getDescriptor()
|
Descriptor |
ModelMBeanConstructorInfo.getDescriptor()
Returns a copy of the associated Descriptor.
|
int |
DescriptorSupport.hashCode()
Returns the hash code value for this descriptor.
|
String |
DescriptorSupport.toString()
Returns a human readable string representing the descriptor.
|
String |
ModelMBeanConstructorInfo.toString()
Returns a string containing the entire contents of the ModelMBeanConstructorInfo in human readable form.
|
String |
ModelMBeanAttributeInfo.toString()
Returns a human-readable version of the ModelMBeanAttributeInfo instance.
|
| Modifier and Type | Method and Description |
|---|---|
Number |
CounterMonitor.getDerivedGauge(ObjectName
Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, or
null otherwise.
|
Number |
GaugeMonitor.getDerivedGauge(ObjectName
Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, or
null otherwise.
|
String |
StringMonitor.getDerivedGauge(ObjectName
Gets the derived gauge of the specified object, if this object is contained in the set of observed MBeans, or
null otherwise.
|
long |
CounterMonitor.getDerivedGaugeTimeStamp(ObjectName
Gets the derived gauge timestamp of the specified object, if this object is contained in the set of observed MBeans, or
0 otherwise.
|
long |
GaugeMonitor.getDerivedGaugeTimeStamp(ObjectName
Gets the derived gauge timestamp of the specified object, if this object is contained in the set of observed MBeans, or
0 otherwise.
|
long |
StringMonitor.getDerivedGaugeTimeStamp(ObjectName
Gets the derived gauge timestamp of the specified object, if this object is contained in the set of observed MBeans, or
0 otherwise.
|
MBeanNotificationInfo |
CounterMonitor.getNotificationInfo()
Returns a
NotificationInfo object containing the name of the Java class of the notification and the notification types sent by the counter monitor.
|
MBeanNotificationInfo |
GaugeMonitor.getNotificationInfo()
Returns a
NotificationInfo object containing the name of the Java class of the notification and the notification types sent by the gauge monitor.
|
MBeanNotificationInfo |
StringMonitor.getNotificationInfo()
Returns a
NotificationInfo object containing the name of the Java class of the notification and the notification types sent by the string monitor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
CompositeDataSupport.equals(Object
Compares the specified obj parameter with this
CompositeDataSupport instance for equality.
|
int |
CompositeDataSupport.hashCode()
Returns the hash code value for this
CompositeDataSupport instance.
|
String |
CompositeDataSupport.toString()
Returns a string representation of this
CompositeDataSupport instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RoleUnresolvedList.add(int index, Object
|
void |
RoleList.add(int index, Object
|
boolean |
RoleUnresolvedList.add(Object
|
boolean |
RoleList.add(Object
|
boolean |
RoleUnresolvedList.addAll(Collection
|
boolean |
RoleList.addAll(Collection
|
boolean |
RoleUnresolvedList.addAll(int index, Collection
|
boolean |
RoleList.addAll(int index, Collection
|
Object |
RoleUnresolvedList.set(int index, Object
|
Object |
RoleList.set(int index, Object
|
| Modifier and Type | Method and Description |
|---|---|
MBeanNotificationInfo |
JMXConnectorServer.getNotificationInfo()
Returns an array indicating the notifications that this MBean sends.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
RMIConnectorServer.connectionClosed(String
|
protected void |
RMIConnectorServer.connectionFailed(String
|
protected void |
RMIConnectorServer.connectionOpened(String
|
void |
RMIConnectorServer.setMBeanServerForwarder(MBeanServerForwarder
|
String |
RMIConnector.toString()
Returns a string representation of this object.
|
String |
RMIConnectionImpl.toString()
Returns a string representation of this object.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
SNIServerName.equals(Object
Indicates whether some other object is "equal to" this server name.
|
boolean |
SNIHostName.equals(Object
Compares this server name to the specified object.
|
int |
SNIServerName.hashCode()
Returns a hash code value for this server name.
|
int |
SNIHostName.hashCode()
Returns a hash code value for this
SNIHostName.
|
String |
SNIServerName.toString()
Returns a string representation of this server name, including the server name type and the encoded server name value in this
SNIServerName object.
|
String |
SSLEngineResult.toString()
Returns a String representation of this object.
|
String |
SNIHostName.toString()
Returns a string representation of the object, including the DNS hostname in this
SNIHostName object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JViewport.addNotify()
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
protected void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.firePropertyChange(String
Overridden for performance reasons.
|
void |
JComponent.hide()
Deprecated.
|
void |
DefaultListCellRenderer.invalidate()
Overridden for performance reasons.
|
boolean |
DefaultListCellRenderer.isOpaque()
Overridden for performance reasons.
|
boolean |
JRootPane.isValidateRoot()
If a descendant of this
JRootPane calls
revalidate, validate from here on down.
|
boolean |
JSplitPane.isValidateRoot()
Returns true, so that calls to
revalidate on any descendant of this
JSplitPane will cause a request to be queued that will validate the
JSplitPane and all its descendants.
|
boolean |
JTextField.isValidateRoot()
Calls to
revalidate that come from within the textfield itself will be handled by validating the textfield, unless the textfield is contained within a
JViewport, in which case this returns false.
|
boolean |
JScrollPane.isValidateRoot()
Overridden to return true so that any calls to
revalidate on any descendants of this
JScrollPane will cause the entire tree beginning with this
JScrollPane to be validated.
|
boolean |
JComponent.isValidateRoot()
If this method returns true,
revalidate calls by descendants of this component will cause the entire tree beginning with this root to be validated.
|
void |
JDesktopPane.remove(Component
Removes the specified component from this container.
|
void |
DefaultListCellRenderer.repaint()
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.repaint(long tm, int x, int y, int width, int height)
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.repaint(Rectangle
Overridden for performance reasons.
|
void |
JTextPane.replaceSelection(String
Replaces the currently selected content with new content represented by the given string.
|
void |
JEditorPane.replaceSelection(String
Replaces the currently selected content with new content represented by the given string.
|
void |
DefaultListCellRenderer.revalidate()
Overridden for performance reasons.
|
void |
DefaultListCellRenderer.validate()
Overridden for performance reasons.
|
| Modifier and Type | Method and Description |
|---|---|
Insets |
StrokeBorder.getBorderInsets(Component
Reinitializes the
insets parameter with this border's current insets.
|
boolean |
CompoundBorder.isBorderOpaque()
Returns whether or not the compound border is opaque.
|
void |
StrokeBorder.paintBorder(Component
Paints the border for the specified component with the specified position and size.
|
| Modifier and Type | Method and Description |
|---|---|
Accessible |
BasicComboBoxUI.getAccessibleChild(JComponent
|
int |
BasicComboBoxUI.getAccessibleChildrenCount(JComponent
|
int |
BasicComboBoxUI.getBaseline(JComponent
Returns the baseline.
|
Component |
BasicComboBoxUI.getBaselineResizeBehavior(JComponent
Returns an enum indicating how the baseline of the component changes as the size changes.
|
Dimension |
BasicComboBoxUI.getMaximumSize(JComponent
|
Dimension |
BasicComboBoxUI.getMinimumSize(JComponent
The minimum size is the size of the display area plus insets plus the button.
|
Dimension |
BasicComboBoxUI.getPreferredSize(JComponent
|
void |
BasicComboBoxUI.installUI(JComponent
|
void |
BasicComboBoxUI.KeyHandler.keyPressed(KeyEvent
|
void |
BasicComboBoxUI.paint(Graphics
|
void |
BasicComboBoxUI.uninstallUI(JComponent
|
| Modifier and Type | Method and Description |
|---|---|
Object |
NimbusStyle.get(SynthContext
Getter for a region specific style property.
|
protected Color |
NimbusStyle.getColorForState(SynthContext
Returns the color for the specified state.
|
UIDefaults |
NimbusLookAndFeel.getDefaults()
Returns the defaults for this SynthLookAndFeel.
|
String |
NimbusLookAndFeel.getDescription()
Returns a textual description of this look and feel.
|
Icon |
NimbusLookAndFeel.getDisabledIcon(JComponent
|
protected Font |
NimbusStyle.getFontForState(SynthContext
Returns the font for the specified state.
|
String |
NimbusLookAndFeel.getID()
Return a string that identifies this look and feel.
|
Insets |
NimbusStyle.getInsets(SynthContext
Returns the Insets that are used to calculate sizing information.
|
String |
NimbusLookAndFeel.getName()
Return a short string that identifies this look and feel.
|
SynthPainter |
NimbusStyle.getPainter(SynthContext
Returns the
SynthPainter that will be used for painting.
|
void |
NimbusLookAndFeel.initialize()
Called by UIManager when this look and feel is installed.
|
void |
NimbusStyle.installDefaults(SynthContext
Installs the necessary state from this Style on the
JComponent from
context.
|
boolean |
NimbusStyle.isOpaque(SynthContext
Returns true if the region is opaque.
|
void |
AbstractRegionPainter.paint(Graphics2D
Renders to the given
Graphics2D object.
|
boolean |
NimbusLookAndFeel.shouldUpdateStyleOnAncestorChanged()
Returns whether or not the UIs should update their
SynthStyles from the
SynthStyleFactory when the ancestor of the
JComponent changes.
|
protected boolean |
NimbusLookAndFeel.shouldUpdateStyleOnEvent(PropertyChangeEvent
Returns whether or not the UIs should update their styles when a particular event occurs.
|
String |
State.toString()
|
void |
NimbusLookAndFeel.uninitialize()
Called by UIManager when this look and feel is uninstalled.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
SynthSliderUI.calculateGeometry()
|
protected int |
SynthTabbedPaneUI.calculateMaxTabHeight(int tabPlacement)
|
protected int |
SynthTabbedPaneUI.calculateMaxTabWidth(int tabPlacement)
|
protected int |
SynthTabbedPaneUI.calculateTabWidth(int tabPlacement, int tabIndex, FontMetrics
|
protected void |
SynthSliderUI.calculateThumbLocation()
|
protected void |
SynthScrollBarUI.configureScrollBarColors()
|
View |
SynthPasswordFieldUI.create(Element
Creates a view (PasswordView) for an element.
|
protected JButton |
SynthComboBoxUI.createArrowButton()
Creates a button which will be used as the control to show or hide the popup portion of the combo box.
|
protected ComponentListener |
SynthInternalFrameUI.createComponentListener()
|
protected JButton |
SynthScrollBarUI.createDecreaseButton(int orientation)
|
protected TreeCellEditor |
SynthTreeUI.createDefaultCellEditor()
Creates a default cell editor.
|
protected TreeCellRenderer |
SynthTreeUI.createDefaultCellRenderer()
Returns the default cell renderer that is used to do the stamping of each node.
|
protected AbstractColorChooserPanel |
SynthColorChooserUI.createDefaultChoosers()
|
BasicSplitPaneDivider |
SynthSplitPaneUI.createDefaultDivider()
Creates the default divider.
|
protected Component |
SynthSplitPaneUI.createDefaultNonContinuousLayoutDivider()
Returns the default non continuous layout divider, which is an instance of
Canvas that fills in the background with dark gray.
|
protected JComponent |
SynthSpinnerUI.createEditor()
This method is called by installUI to get the editor component of the
JSpinner.
|
protected ComboBoxEditor |
SynthComboBoxUI.createEditor()
Creates the default editor that will be used in editable combo boxes.
|
protected JButton |
SynthScrollBarUI.createIncreaseButton(int orientation)
|
protected LayoutManager |
SynthSpinnerUI.createLayout()
Creates a
LayoutManager that manages the
editor,
nextButton, and
previousButton children of the JSpinner.
|
protected LayoutManager |
SynthTabbedPaneUI.createLayoutManager()
Invoked by
installUI to create a layout manager object to manage the
JTabbedPane.
|
protected Container |
SynthOptionPaneUI.createMessageArea()
Called from
SynthOptionPaneUI to create a
Container containing the body of the message.
|
protected MouseListener |
SynthTabbedPaneUI.createMouseListener()
Overridden to keep track of whether the selected tab is also pressed.
|
protected Component |
SynthSpinnerUI.createNextButton()
Creates an increment button, i.e.
|
protected JComponent |
SynthInternalFrameUI.createNorthPane(JInternalFrame
|
protected ComboPopup |
SynthComboBoxUI.createPopup()
Creates the popup portion of the combo box.
|
protected Component |
SynthSpinnerUI.createPreviousButton()
Creates a decrement button, i.e.
|
protected ListCellRenderer |
SynthComboBoxUI.createRenderer()
Creates the default renderer that will be used in a non-editiable combo box.
|
protected JButton |
SynthTabbedPaneUI.createScrollButton(int direction)
Creates and returns a JButton that will provide the user with a way to scroll the tabs in a particular direction.
|
protected Container |
SynthOptionPaneUI.createSeparator()
|
protected BasicSliderUI |
SynthSliderUI.createTrackListener(JSlider
|
protected void |
SynthTreeUI.drawCentered(Component
|
void |
SynthSplitPaneUI.finishedPaintingChildren(JSplitPane
Called when the specified split pane has finished painting its children.
|
protected int |
SynthTabbedPaneUI.getBaseline(int tab)
Returns the baseline for the specified tab.
|
int |
SynthProgressBarUI.getBaseline(JComponent
Returns the baseline.
|
int |
SynthLabelUI.getBaseline(JComponent
Returns the baseline.
|
int |
SynthButtonUI.getBaseline(JComponent
Returns the baseline.
|
int |
SynthSliderUI.getBaseline(JComponent
Returns the baseline.
|
protected Rectangle |
SynthProgressBarUI.getBox(Rectangle
Stores the position and size of the bouncing box that would be painted for the current animation index in
r and returns
r.
|
SynthContext |
SynthColorChooserUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthSeparatorUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthSplitPaneUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthTextFieldUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthTreeUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthProgressBarUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthTabbedPaneUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthSpinnerUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthScrollBarUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthLabelUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthToolTipUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthDesktopPaneUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthMenuUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthMenuBarUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthViewportUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthPopupMenuUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthTableHeaderUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthComboBoxUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthMenuItemUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthButtonUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthPanelUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthSliderUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthScrollPaneUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthRootPaneUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthToolBarUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthEditorPaneUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthTextAreaUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthListUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthInternalFrameUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthDesktopIconUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthTableUI.getContext(JComponent
Returns the Context for the specified component.
|
SynthContext |
SynthOptionPaneUI.getContext(JComponent
Returns the Context for the specified component.
|
UIDefaults |
SynthLookAndFeel.getDefaults()
Returns the defaults for this SynthLookAndFeel.
|
protected Dimension |
SynthComboBoxUI.getDefaultSize()
Returns the default size of an empty display area of the combo box using the current renderer and font.
|
String |
SynthLookAndFeel.getDescription()
Returns a textual description of SynthLookAndFeel.
|
Icon |
SynthTreeUI.getExpandedIcon()
|
protected FontMetrics |
SynthTabbedPaneUI.getFontMetrics()
|
String |
SynthLookAndFeel.getID()
Return a string that identifies this look and feel.
|
Dimension |
SynthSeparatorUI.getMaximumSize(JComponent
Returns the specified component's maximum size appropriate for the look and feel.
|
Dimension |
SynthLabelUI.getMaximumSize(JComponent
Returns the specified component's maximum size appropriate for the look and feel.
|
Dimension |
SynthButtonUI.getMaximumSize(JComponent
Returns the specified component's maximum size appropriate for the look and feel.
|
Dimension |
SynthSeparatorUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
SynthLabelUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
SynthButtonUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
Dimension |
SynthSliderUI.getMinimumSize(JComponent
Returns the specified component's minimum size appropriate for the look and feel.
|
protected Dimension |
SynthScrollBarUI.getMinimumThumbSize()
Returns the smallest acceptable size for the thumb.
|
String |
SynthLookAndFeel.getName()
Return a short string that identifies this look and feel.
|
protected Dimension |
SynthMenuUI.getPreferredMenuItemSize(JComponent
|
protected Dimension |
SynthMenuItemUI.getPreferredMenuItemSize(JComponent
|
Dimension |
SynthSeparatorUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthProgressBarUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthScrollBarUI.getPreferredSize(JComponent
A vertical scrollbar's preferred width is the maximum of preferred widths of the (non
null) increment/decrement buttons, and the minimum width of the thumb.
|
Dimension |
SynthLabelUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthToolTipUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthButtonUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
Dimension |
SynthSliderUI.getPreferredSize(JComponent
Returns the specified component's preferred size appropriate for the look and feel.
|
protected String |
SynthToggleButtonUI.getPropertyPrefix()
|
protected String |
SynthRadioButtonUI.getPropertyPrefix()
|
protected String |
SynthFormattedTextFieldUI.getPropertyPrefix()
Fetches the name used as a key to lookup properties through the UIManager.
|
protected String |
SynthPasswordFieldUI.getPropertyPrefix()
Fetches the name used as a key to look up properties through the UIManager.
|
protected String |
SynthRadioButtonMenuItemUI.getPropertyPrefix()
|
protected String |
SynthTextPaneUI.getPropertyPrefix()
Fetches the name used as a key to lookup properties through the UIManager.
|
protected String |
SynthCheckBoxUI.getPropertyPrefix()
|
protected String |
SynthCheckBoxMenuItemUI.getPropertyPrefix()
|
protected int |
SynthTreeUI.getRowX(int row, int depth)
Returns the location, along the x-axis, to render a particular row at.
|
protected boolean |
SynthOptionPaneUI.getSizeButtonsToSameWidth()
Returns true, basic L&F wants all the buttons to have the same width.
|
protected Icon |
SynthRadioButtonUI.getSizingIcon(AbstractButton
Returns the Icon used in calculating the preferred/minimum/maximum size.
|
boolean |
SynthScrollBarUI.getSupportsAbsolutePositioning()
Indicates whether the user can absolutely position the thumb with a mouse gesture (usually the middle mouse button).
|
protected Insets |
SynthTabbedPaneUI.getTabInsets(int tabPlacement, int tabIndex)
|
protected int |
SynthTabbedPaneUI.getTabLabelShiftX(int tabPlacement, int tabIndex, boolean isSelected)
|
protected int |
SynthTabbedPaneUI.getTabLabelShiftY(int tabPlacement, int tabIndex, boolean isSelected)
|
protected Dimension |
SynthSliderUI.getThumbSize()
|
void |
SynthLookAndFeel.initialize()
Called by UIManager when this look and feel is installed.
|
protected void |
SynthToolBarUI.installComponents()
|
protected void |
SynthDesktopIconUI.installComponents()
|
protected void |
SynthOptionPaneUI.installComponents()
|
protected void |
SynthColorChooserUI.installDefaults()
|
protected void |
SynthSplitPaneUI.installDefaults()
Installs the UI defaults.
|
protected void |
SynthTextFieldUI.installDefaults()
Initializes component properties, such as font, foreground, background, caret color, selection color, selected text color, disabled text color, and border color.
|
protected void |
SynthTreeUI.installDefaults()
|
protected void |
SynthProgressBarUI.installDefaults()
|
protected void |
SynthTabbedPaneUI.installDefaults()
|
protected void |
SynthSpinnerUI.installDefaults()
Initializes the
JSpinner
border,
foreground, and
background, properties based on the corresponding "Spinner.*" properties from defaults table.
|
protected void |
SynthScrollBarUI.installDefaults()
|
protected void |
SynthDesktopPaneUI.installDefaults()
|
protected void |
SynthMenuUI.installDefaults()
|
protected void |
SynthMenuBarUI.installDefaults()
|
void |
SynthPopupMenuUI.installDefaults()
|
protected void |
SynthTableHeaderUI.installDefaults()
Initializes JTableHeader properties such as font, foreground, and background.
|
protected void |
SynthComboBoxUI.installDefaults()
|
protected void |
SynthMenuItemUI.installDefaults()
|
protected void |
SynthToolBarUI.installDefaults()
|
protected void |
SynthEditorPaneUI.installDefaults()
Initializes component properties, such as font, foreground, background, caret color, selection color, selected text color, disabled text color, and border color.
|
protected void |
SynthTextAreaUI.installDefaults()
Initializes component properties, such as font, foreground, background, caret color, selection color, selected text color, disabled text color, and border color.
|
protected void |
SynthListUI.installDefaults()
Initializes list properties such as font, foreground, and background, and adds the CellRendererPane.
|
void |
SynthInternalFrameUI.installDefaults()
|
protected void |
SynthDesktopIconUI.installDefaults()
|
protected void |
SynthTableUI.installDefaults()
Initializes JTable properties, such as font, foreground, and background.
|
protected void |
SynthOptionPaneUI.installDefaults()
|
protected void |
SynthButtonUI.installDefaults(AbstractButton
|
protected void |
SynthToolTipUI.installDefaults(JComponent
|
protected void |
SynthLabelUI.installDefaults(JLabel
|
protected void |
SynthPanelUI.installDefaults(JPanel
|
protected void |
SynthRootPaneUI.installDefaults(JRootPane
|
protected void |
SynthScrollPaneUI.installDefaults(JScrollPane
|
protected void |
SynthSliderUI.installDefaults(JSlider
|
protected void |
SynthDesktopPaneUI.installDesktopManager()
|
protected void |
SynthPasswordFieldUI.installKeyboardActions()
|
protected void |
SynthColorChooserUI.installListeners()
|
protected void |
SynthSplitPaneUI.installListeners()
Installs the event listeners for the UI.
|
protected void |
SynthTreeUI.installListeners()
|
protected void |
SynthProgressBarUI.installListeners()
|
protected void |
SynthTabbedPaneUI.installListeners()
|
protected void |
SynthSpinnerUI.installListeners()
Initializes
PropertyChangeListener with a shared object that delegates interesting PropertyChangeEvents to protected methods.
|
protected void |
SynthScrollBarUI.installListeners()
|
protected void |
SynthDesktopPaneUI.installListeners()
Installs the
PropertyChangeListener returned from
createPropertyChangeListener on the
JDesktopPane.
|
protected void |
SynthMenuUI.installListeners()
|
protected void |
SynthMenuBarUI.installListeners()
|
protected void |
SynthPopupMenuUI.installListeners()
|
protected void |
SynthTableHeaderUI.installListeners()
Attaches listeners to the JTableHeader.
|
protected void |
SynthComboBoxUI.installListeners()
Creates and installs listeners for the combo box and its model.
|
protected void |
SynthMenuItemUI.installListeners()
|
protected void |
SynthToolBarUI.installListeners()
|
protected void |
SynthListUI.installListeners()
Creates and installs the listeners for the JList, its model, and its selectionModel.
|
protected void |
SynthInternalFrameUI.installListeners()
|
protected void |
SynthDesktopIconUI.installListeners()
|
protected void |
SynthTableUI.installListeners()
Attaches listeners to the JTable.
|
protected void |
SynthOptionPaneUI.installListeners()
|
protected void |
SynthButtonUI.installListeners(AbstractButton
|
protected void |
SynthToolTipUI.installListeners(JComponent
|
protected void |
SynthScrollPaneUI.installListeners(JScrollPane
|
protected void |
SynthSliderUI.installListeners(JSlider
|
void |
SynthSeparatorUI.installUI(JComponent
Configures the specified component appropriately for the look and feel.
|
void |
SynthViewportUI.installUI(JComponent
Configures the specified component appropriately for the look and feel.
|
void |
SynthComboBoxUI.installUI(JComponent
Configures the specified component appropriately for the look and feel.
|
void |
SynthPanelUI.installUI(JComponent
Configures the specified component appropriately for the look and feel.
|
void |
SynthTextPaneUI.installUI(JComponent
Installs the UI for a component.
|
boolean |
SynthLookAndFeel.isNativeLookAndFeel()
Returns false, SynthLookAndFeel is not a native look and feel.
|
boolean |
SynthLookAndFeel.isSupportedLookAndFeel()
Returns true, SynthLookAndFeel is always supported.
|
void |
SynthColorChooserUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthSeparatorUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthSplitPaneUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthTreeUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthProgressBarUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthTabbedPaneUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthSpinnerUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthScrollBarUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthLabelUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthToolTipUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthDesktopPaneUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthMenuUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthMenuBarUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthViewportUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthPopupMenuUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthTableHeaderUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthComboBoxUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthMenuItemUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthButtonUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthPanelUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthSliderUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthScrollPaneUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthRootPaneUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthToolBarUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthInternalFrameUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthDesktopIconUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthTableUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
void |
SynthOptionPaneUI.paint(Graphics
Paints the specified component according to the Look and Feel.
|
protected void |
SynthTextFieldUI.paintBackground(Graphics
Paints a background for the view.
|
protected void |
SynthEditorPaneUI.paintBackground(Graphics
Paints a background for the view.
|
protected void |
SynthTextAreaUI.paintBackground(Graphics
Paints a background for the view.
|
void |
SynthColorChooserUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthToggleButtonUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthSeparatorUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthSplitPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthRadioButtonUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthTextFieldUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthTreeUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthProgressBarUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthFormattedTextFieldUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthTabbedPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthSpinnerUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthScrollBarUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthLabelUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthToolTipUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthDesktopPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthMenuUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthMenuBarUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthViewportUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthPopupMenuUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthTableHeaderUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthComboBoxUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthMenuItemUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthPasswordFieldUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthButtonUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthPanelUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthSliderUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthScrollPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthRootPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthToolBarUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthRadioButtonMenuItemUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthEditorPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthTextAreaUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthListUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthTextPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthInternalFrameUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthDesktopIconUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthCheckBoxUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthTableUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthOptionPaneUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthCheckBoxMenuItemUI.paintBorder(SynthContext
Paints the border.
|
void |
SynthComboBoxUI.paintCurrentValue(Graphics
Paints the currently selected item.
|
protected void |
SynthToolBarUI.paintDragWindow(Graphics
Paints the contents of the window used for dragging.
|
protected void |
SynthTreeUI.paintDropLine(Graphics
Paints the drop line.
|
protected void |
SynthTreeUI.paintExpandControl(Graphics
Paints the expand (toggle) part of a row.
|
protected void |
SynthTreeUI.paintHorizontalLine(Graphics
Paints a horizontal line.
|
protected void |
SynthTreeUI.paintHorizontalPartOfLeg(Graphics
Paints the horizontal part of the leg.
|
protected void |
SynthTreeUI.paintVerticalLine(Graphics
Paints a vertical line.
|
protected void |
SynthTreeUI.paintVerticalPartOfLeg(Graphics
Paints the vertical part of the leg.
|
void |
SynthColorChooserUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthSplitPaneUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
protected void |
SynthTextFieldUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed on the associated JTextComponent.
|
void |
SynthTreeUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthProgressBarUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthTabbedPaneUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthSpinnerUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthLabelUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthToolTipUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthDesktopPaneUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthMenuUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthMenuBarUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthViewportUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthPopupMenuUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthTableHeaderUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthComboBoxUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthMenuItemUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthButtonUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthPanelUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthSliderUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthRootPaneUI.propertyChange(PropertyChangeEvent
Invoked when a property changes on the root pane.
|
void |
SynthToolBarUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
protected void |
SynthEditorPaneUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed on the associated JTextComponent.
|
protected void |
SynthTextAreaUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed on the associated JTextComponent.
|
void |
SynthListUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
protected void |
SynthTextPaneUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed on the associated JTextComponent.
|
void |
SynthInternalFrameUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthTableUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
void |
SynthOptionPaneUI.propertyChange(PropertyChangeEvent
This method gets called when a bound property is changed.
|
protected void |
SynthSliderUI.recalculateIfInsetsChanged()
|
protected void |
SynthSpinnerUI.replaceEditor(JComponent
Called by the
PropertyChangeListener when the
JSpinner editor property changes.
|
protected void |
SynthTableHeaderUI.rolloverColumnUpdated(int oldColumn, int newColumn)
This method gets called every time when a rollover column in the table header is updated.
|
protected void |
SynthProgressBarUI.setAnimationIndex(int newValue)
Sets the index of the current animation frame to the specified value and requests that the progress bar be repainted.
|
protected void |
SynthToolBarUI.setBorderToNonRollover(Component
This implementation does nothing, because the
rollover property of the
JToolBar class is not used in the Synth Look and Feel.
|
protected void |
SynthToolBarUI.setBorderToNormal(Component
This implementation does nothing, because the
rollover property of the
JToolBar class is not used in the Synth Look and Feel.
|
protected void |
SynthToolBarUI.setBorderToRollover(Component
This implementation does nothing, because the
rollover property of the
JToolBar class is not used in the Synth Look and Feel.
|
protected void |
SynthTabbedPaneUI.setRolloverTab(int index)
Sets the tab the mouse is currently over to
index.
|
void |
SynthSliderUI.setThumbLocation(int x, int y)
|
protected void |
SynthScrollBarUI.setThumbRollover(boolean active)
Sets whether or not the mouse is currently over the thumb.
|
String |
Region.toString()
Returns the name of the Region.
|
void |
SynthLookAndFeel.uninitialize()
Called by UIManager when this look and feel is uninstalled.
|
protected void |
SynthToolBarUI.uninstallComponents()
|
protected void |
SynthInternalFrameUI.uninstallComponents()
|
protected void |
SynthColorChooserUI.uninstallDefaults()
|
protected void |
SynthSplitPaneUI.uninstallDefaults()
Uninstalls the UI defaults.
|
protected void |
SynthTextFieldUI.uninstallDefaults()
Sets the component properties that have not been explicitly overridden to
null.
|
protected void |
SynthTreeUI.uninstallDefaults()
|
protected void |
SynthProgressBarUI.uninstallDefaults()
|
protected void |
SynthTabbedPaneUI.uninstallDefaults()
|
protected void |
SynthSpinnerUI.uninstallDefaults()
Sets the
JSpinner's layout manager to null.
|
protected void |
SynthScrollBarUI.uninstallDefaults()
|
protected void |
SynthDesktopPaneUI.uninstallDefaults()
|
protected void |
SynthMenuUI.uninstallDefaults()
|
protected void |
SynthMenuBarUI.uninstallDefaults()
|
protected void |
SynthPopupMenuUI.uninstallDefaults()
|
protected void |
SynthTableHeaderUI.uninstallDefaults()
|
protected void |
SynthComboBoxUI.uninstallDefaults()
Uninstalls the default colors, default font, default renderer, and default editor from the combo box.
|
protected void |
SynthMenuItemUI.uninstallDefaults()
|
protected void |
SynthToolBarUI.uninstallDefaults()
|
protected void |
SynthEditorPaneUI.uninstallDefaults()
Sets the component properties that have not been explicitly overridden to
null.
|
protected void |
SynthTextAreaUI.uninstallDefaults()
Sets the component properties that have not been explicitly overridden to
null.
|
protected void |
SynthListUI.uninstallDefaults()
Sets the list properties that have not been explicitly overridden to
null.
|
protected void |
SynthInternalFrameUI.uninstallDefaults()
|
protected void |
SynthDesktopIconUI.uninstallDefaults()
|
protected void |
SynthTableUI.uninstallDefaults()
|
protected void |
SynthOptionPaneUI.uninstallDefaults()
|
protected void |
SynthButtonUI.uninstallDefaults(AbstractButton
|
protected void |
SynthToolTipUI.uninstallDefaults(JComponent
|
protected void |
SynthLabelUI.uninstallDefaults(JLabel
|
protected void |
SynthPanelUI.uninstallDefaults(JPanel
|
protected void |
SynthRootPaneUI.uninstallDefaults(JRootPane
|
protected void |
SynthScrollPaneUI.uninstallDefaults(JScrollPane
|
protected void |
SynthDesktopPaneUI.uninstallDesktopManager()
|
protected void |
SynthColorChooserUI.uninstallListeners()
|
protected void |
SynthSplitPaneUI.uninstallListeners()
Uninstalls the event listeners from the UI.
|
protected void |
SynthTreeUI.uninstallListeners()
|
protected void |
SynthProgressBarUI.uninstallListeners()
Removes all listeners installed by this object.
|
protected void |
SynthTabbedPaneUI.uninstallListeners()
|
protected void |
SynthSpinnerUI.uninstallListeners()
Removes the
PropertyChangeListener added by installListeners.
|
protected void |
SynthScrollBarUI.uninstallListeners()
|
protected void |
SynthDesktopPaneUI.uninstallListeners()
Uninstalls the
PropertyChangeListener returned from
createPropertyChangeListener from the
JDesktopPane.
|
protected void |
SynthMenuUI.uninstallListeners()
|
protected void |
SynthMenuBarUI.uninstallListeners()
|
protected void |
SynthPopupMenuUI.uninstallListeners()
|
protected void |
SynthTableHeaderUI.uninstallListeners()
|
protected void |
SynthComboBoxUI.uninstallListeners()
Removes the installed listeners from the combo box and its model.
|
protected void |
SynthMenuItemUI.uninstallListeners()
|
protected void |
SynthToolBarUI.uninstallListeners()
|
protected void |
SynthListUI.uninstallListeners()
Removes the listeners from the JList, its model, and its selectionModel.
|
protected void |
SynthInternalFrameUI.uninstallListeners()
|
protected void |
SynthDesktopIconUI.uninstallListeners()
|
protected void |
SynthTableUI.uninstallListeners()
|
protected void |
SynthOptionPaneUI.uninstallListeners()
|
protected void |
SynthButtonUI.uninstallListeners(AbstractButton
|
protected void |
SynthToolTipUI.uninstallListeners(JComponent
|
protected void |
SynthScrollPaneUI.uninstallListeners(JComponent
|
protected void |
SynthSliderUI.uninstallListeners(JSlider
|
void |
SynthSeparatorUI.uninstallUI(JComponent
Reverses configuration which was done on the specified component during
installUI.
|
void |
SynthMenuUI.uninstallUI(JComponent
Reverses configuration which was done on the specified component during
installUI.
|
void |
SynthViewportUI.uninstallUI(JComponent
Reverses configuration which was done on the specified component during
installUI.
|
void |
SynthComboBoxUI.uninstallUI(JComponent
Reverses configuration which was done on the specified component during
installUI.
|
void |
SynthMenuItemUI.uninstallUI(JComponent
Reverses configuration which was done on the specified component during
installUI.
|
void |
SynthPanelUI.uninstallUI(JComponent
Reverses configuration which was done on the specified component during
installUI.
|
void |
SynthColorChooserUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthSeparatorUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthSplitPaneUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthTextFieldUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthTreeUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthProgressBarUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthTabbedPaneUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthSpinnerUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthScrollBarUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthLabelUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthToolTipUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthDesktopPaneUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthMenuUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthMenuBarUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthViewportUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthPopupMenuUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthTableHeaderUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthComboBoxUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthMenuItemUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthButtonUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthPanelUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthSliderUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthScrollPaneUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthRootPaneUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthToolBarUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthEditorPaneUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthTextAreaUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthListUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthInternalFrameUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthDesktopIconUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthTableUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
void |
SynthOptionPaneUI.update(Graphics
Notifies this UI delegate to repaint the specified component.
|
int |
SynthSliderUI.valueForXPosition(int xPos)
Returns the value at the x position.
|
int |
SynthSliderUI.valueForYPosition(int yPos)
Returns the value at the y position.
|
protected int |
SynthSliderUI.xPositionForValue(int value)
|
protected int |
SynthSliderUI.yPositionForValue(int value, int trackY, int trackHeight)
Returns the y location for the specified value.
|
| Modifier and Type | Method and Description |
|---|---|
protected SizeRequirements |
ParagraphView.calculateMinorAxisRequirements(int axis, SizeRequirements
Calculate the needs for the paragraph along the minor axis.
|
float |
GlyphView.getMinimumSpan(int axis)
Determines the minimum span for this view along an axis.
|
| Modifier and Type | Method and Description |
|---|---|
String |
SimpleJavaFileObject.toString()
|
| Modifier and Type | Method and Description |
|---|---|
Throwable |
JAXBException.getCause()
|
| Modifier and Type | Method and Description |
|---|---|
Throwable |
FactoryConfigurationError.getCause()
use the exception chaining mechanism of JDK1.4
|
| Modifier and Type | Method and Description |
|---|---|
Throwable |
FactoryConfigurationError.getCause()
use the exception chaining mechanism of JDK1.4
|
| Modifier and Type | Method and Description |
|---|---|
Throwable |
TransformerFactoryConfigurationError.getCause()
use the exception chaining mechanism of JDK1.4
|